summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2023-06-12 04:07:57 +0100
committerDaniel Golle <daniel@makrotopia.org>2023-07-12 19:02:08 +0100
commitcff3786bd54cec8276f1fd08d5c6697846f393a5 (patch)
tree35d8927db38bcc1a42a1ab69c76f90dd8295d9ff /scripts
parenta5005508f069c9bd0c1d33970e9b3ecbe5040380 (diff)
downloadopenwrt-cff3786bd54cec8276f1fd08d5c6697846f393a5.tar.gz
openwrt-cff3786bd54cec8276f1fd08d5c6697846f393a5.tar.bz2
openwrt-cff3786bd54cec8276f1fd08d5c6697846f393a5.zip
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@makrotopia.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mkits.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/mkits.sh b/scripts/mkits.sh
index eeb01216f9..46ab5ee023 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${REFERENCE_CHAR}1 {
algo = \"crc32\";