[openwrt/openwrt] scripts/mkits.sh: DT overlays don't need a loadaddr

LEDE Commits lede-commits at lists.infradead.org
Thu Jul 13 04:06:07 PDT 2023


dangole pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/50507f5af3d3b3630a448412581707dcf60b08fa

commit 50507f5af3d3b3630a448412581707dcf60b08fa
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Mon Jun 12 04:07:57 2023 +0100

    scripts/mkits.sh: DT overlays don't need a loadaddr
    
    DT overlays do not need relocation in order to be applied, so drop
    defining the load address for dtbos.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
    (cherry picked from commit cff3786bd54cec8276f1fd08d5c6697846f393a5)
---
 scripts/mkits.sh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/scripts/mkits.sh b/scripts/mkits.sh
index b1c6f98867..bd6cddabf4 100755
--- a/scripts/mkits.sh
+++ b/scripts/mkits.sh
@@ -88,11 +88,6 @@ if [ -n "${COMPATIBLE}" ]; then
 	COMPATIBLE_PROP="compatible = \"${COMPATIBLE}\";"
 fi
 
-[ "$DTOVERLAY" ] && {
-	dtbsize=$(wc -c "$DTB" | awk '{print $1}')
-	DTADDR=$(printf "0x%08x" $(($LOAD_ADDR - $dtbsize)) )
-}
-
 [ "$FDTADDR" ] && {
 	DTADDR="$FDTADDR"
 }
@@ -170,7 +165,6 @@ OVCONFIGS=""
 	ovnode="fdt-$ovname"
 	ovsize=$(wc -c "$overlay_blob" | awk '{print $1}')
 	echo "$ovname ($overlay_blob) : $ovsize" >&2
-	DTADDR=$(printf "0x%08x" $(($DTADDR - $ovsize)))
 	FDTOVERLAY_NODE="$FDTOVERLAY_NODE
 
 		$ovnode {
@@ -179,7 +173,6 @@ OVCONFIGS=""
 			data = /incbin/(\"${overlay_blob}\");
 			type = \"flat_dt\";
 			arch = \"${ARCH}\";
-			load = <${DTADDR}>;
 			compression = \"none\";
 			hash at 1 {
 				algo = \"crc32\";




More information about the lede-commits mailing list