diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2023-02-07 15:06:50 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2023-02-24 12:05:14 +0100 |
commit | ee85786b43344b8ed5f722ffd3639f1e0563fd36 (patch) | |
tree | e37b9b41824f1113713513c661c92ce9bdb71406 /target | |
parent | 218f425b6165953c8adace91ac368a2db010357b (diff) | |
download | upstream-ee85786b43344b8ed5f722ffd3639f1e0563fd36.tar.gz upstream-ee85786b43344b8ed5f722ffd3639f1e0563fd36.tar.bz2 upstream-ee85786b43344b8ed5f722ffd3639f1e0563fd36.zip |
bcm47xx: relocate LZMA loader #2
Increased size of the 5.15 kernel requires bumping BZ_TEXT_START again.
Without this CFE hangs at the:
Starting program at 0x80001000
This fixes booting 5.15 based mips74k images on:
1. BCM4706 (Luxul XWR-1750)
2. BCM5357B0 (Linksys E1000 V2.1)
3. BCM47186B0 (Luxul XWR-600)
4. BCM5358 (Linksys E2500 V3)
It isn't needed but also doesn't break:
1. BCM5354 (Asus WL-500gP V2)
Ref: 4cd97e476089 ("bcm47xx: relocate LZMA loader")
Cc: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Acked-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/bcm47xx/image/lzma-loader/src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/bcm47xx/image/lzma-loader/src/Makefile b/target/linux/bcm47xx/image/lzma-loader/src/Makefile index a3e7ae1c92..0bad8dd9bb 100644 --- a/target/linux/bcm47xx/image/lzma-loader/src/Makefile +++ b/target/linux/bcm47xx/image/lzma-loader/src/Makefile @@ -18,8 +18,8 @@ # TEXT_START := 0x80001000 -BZ_TEXT_START := 0x80700000 -BZ_STACK_START := 0x80800000 +BZ_TEXT_START := 0x80d00000 +BZ_STACK_START := 0x80e00000 OBJCOPY := $(CROSS_COMPILE)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S |