From 015e8820b53ef9e0be86025b04239a04698b5682 Mon Sep 17 00:00:00 2001 From: Shiji Yang Date: Fri, 20 Mar 2026 19:32:03 +0800 Subject: [PATCH] ramips: fix kernel decompress error for ELECOM WRC-X1800GS The bootloader reads the compressed kernel to 0x82000000. We need to decompress kernel to a different address far from 0x82000000 to avoid memory overlap. Fixes: https://github.com/openwrt/openwrt/issues/22270 Signed-off-by: Shiji Yang Link: https://github.com/openwrt/openwrt/pull/22520 Signed-off-by: Hauke Mehrtens --- target/linux/ramips/image/mt7621.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk index 1cbd2426a5..50c53a6d8e 100644 --- a/target/linux/ramips/image/mt7621.mk +++ b/target/linux/ramips/image/mt7621.mk @@ -1413,7 +1413,7 @@ define Device/elecom_wrc-x1800gs $(Device/nand) DEVICE_VENDOR := ELECOM DEVICE_MODEL := WRC-X1800GS - KERNEL_LOADADDR := 0x82000000 + KERNEL_LOADADDR := 0x88000000 KERNEL := kernel-bin | relocate-kernel $(loadaddr-y) | lzma | \ fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb | \ znet-header 4.04(XVF.1)b90 COMC 0x68 | elecom-product-header WRC-X1800GS