aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 307620f..5eec663 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 fvp-base-gicv2-psci-android.dtb $(KERNEL) $(FILESYSTEM)
+$(IMAGE): boot.o model.lds fdt.dtb $(KERNEL) $(FILESYSTEM)
$(LD) -o $@ --script=model.lds
boot.o: $(BOOTLOADER) Makefile
@@ -77,8 +77,5 @@ 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)