diff options
author | Jon Loeliger <jdl@jdl.com> | 2006-06-07 10:54:16 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@jdl.com> | 2006-06-07 10:54:16 -0500 |
commit | 8bb683b6278e44d65c8a15ad9741497d5f445354 (patch) | |
tree | 1815a374a98c957b37fa949b165aabbf83b7bedc /board | |
parent | 3e8bbbd1908de645be0e1e94b1503b58d22d86e7 (diff) | |
parent | 8ecc971618f56029ad99d3516f8b297a6ed58971 (diff) | |
download | u-boot-imx-8bb683b6278e44d65c8a15ad9741497d5f445354.zip u-boot-imx-8bb683b6278e44d65c8a15ad9741497d5f445354.tar.gz u-boot-imx-8bb683b6278e44d65c8a15ad9741497d5f445354.tar.bz2 |
Merge branch 'mpc86xx'
Diffstat (limited to 'board')
-rw-r--r-- | board/mpc8641hpcn/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/mpc8641hpcn/Makefile b/board/mpc8641hpcn/Makefile index 2613730..060db84 100644 --- a/board/mpc8641hpcn/Makefile +++ b/board/mpc8641hpcn/Makefile @@ -31,8 +31,12 @@ SOBJS := init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) +ifndef DTC +DTC := dtc +endif + %.dtb: %.dts - dtc -f -V 0x10 -I dts -O dtb $< >$@ + $(DTC) -f -V 0x10 -I dts -O dtb $< >$@ %.c: %.dtb xxd -i $< \ |