From: Jon Loeliger Date: Wed, 7 Jun 2006 15:52:49 +0000 (-0500) Subject: Allow DTC path to be passed in. X-Git-Tag: v2008.10-rc1~1125^2~1^2~56^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9bf4858fca5aa4d651b283270f77da72ebadfd5;p=platform%2Fkernel%2Fu-boot.git Allow DTC path to be passed in. Signed-off-by: Jon Loeliger --- 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 $< \