aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2013-10-05 16:29:07 +0530
committerAmit Pundir <amit.pundir@linaro.org>2013-10-05 22:46:18 +0530
commitdb2d293a965d2466510bef5bcd99df1b0784a1ca (patch)
tree26c33967da5374c8dec3705e67ceac65c5f571f7
parentef4a47d3824fccc5b592df3bc6d26a9bce8e7787 (diff)
downloadboot-wrapper-aarch64-db2d293a965d2466510bef5bcd99df1b0784a1ca.tar.gz
Makefile: build FVP base dtb
Change-Id: Ie306259764740de92916a38a8bd2dbbfc210a067 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5eec663..307620f 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ all: $(IMAGE)
clean:
rm -f $(IMAGE) boot.o model.lds fdt.dtb
-$(IMAGE): boot.o model.lds fdt.dtb $(KERNEL) $(FILESYSTEM)
+$(IMAGE): boot.o model.lds fdt.dtb fvp-base-gicv2-psci-android.dtb $(KERNEL) $(FILESYSTEM)
$(LD) -o $@ --script=model.lds
boot.o: $(BOOTLOADER) Makefile
@@ -77,5 +77,8 @@ fdt.dtb: $(FDT_DEPS) Makefile
@sed -e 's%/\* chosen \*/%$(CHOSEN_NODE)%' -e 's%$(strip $(FDT_INCL_REGEX))%\1$(dir $(FDT_SRC))\2\3%' $< | \
$(DTC) -O dtb -o $@ -
+fvp-base-gicv2-psci-android.dtb: fvp-base-gicv2-psci-android.dts
+ $(DTC) -I dts -O dtb -o $@ $<
+
# The filesystem archive might not exist if INITRD is not being used
.PHONY: all clean $(FILESYSTEM)