[U-Boot] [PATCH 02/33] Align embedded device tree correctly
Simon Glass
sjg at chromium.org
Wed Nov 12 01:17:50 CET 2014
Device trees must be aligned to a 4-byte boundary. This was dropped in the
Kbuild conversion. Bring it back, and use 16-byte alignment for good
measure.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
scripts/Makefile.lib | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 072abaa..e8c0467 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -251,11 +251,13 @@ quiet_cmd_dt_S_dtb= DTB $@
cmd_dt_S_dtb= \
( \
echo '.section .dtb.init.rodata,"a"'; \
+ echo '.balign 16'; \
echo '.global __dtb_$(*F)_begin'; \
echo '__dtb_$(*F)_begin:'; \
echo '.incbin "$<" '; \
echo '__dtb_$(*F)_end:'; \
echo '.global __dtb_$(*F)_end'; \
+ echo '.balign 16'; \
) > $@
$(obj)/%.dtb.S: $(obj)/%.dtb
--
2.1.0.rc2.206.gedb03e5
More information about the U-Boot
mailing list