diff options
| author | Tianling Shen | 2025-10-29 13:43:28 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-11-15 18:56:27 +0000 |
| commit | bdb269c163cf6a2940107f53c92eb684423ee45f (patch) | |
| tree | c1e674fdcd8ab69b98754e7afe1bc8194d2773fb | |
| parent | 9483f4459fe3088ecd7383d943bc7861df497123 (diff) | |
| download | openwrt-bdb269c163cf6a2940107f53c92eb684423ee45f.tar.gz | |
rockchip: unset KERNEL_LOADADDR in default profile
Unset KERNEL_LOADADDR in default profile to avoid using the value
from other boards (if someone forgets to set KERNEL_LOADADDR).
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Link: https://github.com/openwrt/openwrt/pull/20375
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/rockchip/image/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/rockchip/image/Makefile b/target/linux/rockchip/image/Makefile index 8324d6482c..d46d192900 100644 --- a/target/linux/rockchip/image/Makefile +++ b/target/linux/rockchip/image/Makefile @@ -47,6 +47,7 @@ endef define Device/Default PROFILES := Default KERNEL = kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb + KERNEL_LOADADDR := BOOT_SCRIPT := IMAGES := sysupgrade.img.gz IMAGE/sysupgrade.img.gz = boot-common | boot-script $$(BOOT_SCRIPT) | pine64-img | gzip | append-metadata |