diff options
author | Simon Glass <sjg@chromium.org> | 2015-05-12 14:55:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-06-10 19:26:55 -0600 |
commit | b65d5209b36f6a4c3d9b9b3009ca1ceaeedb40ba (patch) | |
tree | 0f31ab9b57974bf0cae0d76526ce5667af8656b3 /arch/arm | |
parent | 9091400859248e2f1d04f34f37c8a30b15fc4ef7 (diff) | |
download | u-boot-imx-b65d5209b36f6a4c3d9b9b3009ca1ceaeedb40ba.zip u-boot-imx-b65d5209b36f6a4c3d9b9b3009ca1ceaeedb40ba.tar.gz u-boot-imx-b65d5209b36f6a4c3d9b9b3009ca1ceaeedb40ba.tar.bz2 |
fdt: arm: Drop device tree padding
The 4KB padding doesn't seem necessary since we don't normally adjust the
control device tree file within U-Boot. Also drop the memory table space.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/dts/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index bc1421e..9c735c6 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -138,7 +138,8 @@ dtb-$(CONFIG_VF610) += vf500-colibri.dtb \ targets += $(dtb-y) -DTC_FLAGS += -R 4 -p 0x1000 +# Add any required device tree compiler flags here +DTC_FLAGS += PHONY += dtbs dtbs: $(addprefix $(obj)/, $(dtb-y)) |