summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2022-02-14 11:06:22 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-02-14 11:07:37 +0100
commitcff9f913da37035ed627cc535bfab6099d69fbb2 (patch)
tree461e29dcb26ed7ff6d89e86e54d065ba067f5dcd /scripts
parenta7f0bcee97dd14ba522b02578ff08e8cafdca1df (diff)
downloadbarebox-cff9f913da37035ed627cc535bfab6099d69fbb2.tar.gz
barebox-cff9f913da37035ed627cc535bfab6099d69fbb2.tar.xz
compressed dtb: Make sure they are only available when supported
A board has to select CONFIG_USE_COMPRESSED_DTB either directly or through arch specific options when it uses compressed dtbs. This is easily forgotten. barebox compiles fine, but during runtime the decompression code is missing and barebox won't start. As this happens in the PBL possibly without output this may be unnecessarily hard to debug. Make sure compilation fails when a board uses compressed dtbs but didn't select CONFIG_USE_COMPRESSED_DTB. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-dtb-s2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/gen-dtb-s b/scripts/gen-dtb-s
index 4f8c62a0b8..1027db2804 100755
--- a/scripts/gen-dtb-s
+++ b/scripts/gen-dtb-s
@@ -58,6 +58,7 @@ fi
compressed=$(${CONFIG_SHELL} "${srctree}/scripts/file-size.sh" $dtb.lzo)
uncompressed=$(${CONFIG_SHELL} "${srctree}/scripts/file-size.sh" $dtb)
+echo "#ifdef CONFIG_USE_COMPRESSED_DTB"
echo ".section .dtbz.rodata.${name},\"a\""
echo ".balign STRUCT_ALIGNMENT"
echo ".global __dtb_z_${name}_start"
@@ -69,3 +70,4 @@ echo ".incbin \"$dtb.lzo\""
echo "__dtb_z_${name}_end:"
echo ".global __dtb_z_${name}_end"
echo ".balign STRUCT_ALIGNMENT"
+echo "#endif"