mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
ramips: limit dictionary size for lzma compression
In some cases, recent builds fail to boot from flash with at least some MT7621 based devices. The error message is: "LZMA ERROR 1 - must RESET board to recover" Booting the same kernel via TFTP works for some reason. Through testing I figured out that limiting the LZMA dictionary size seems to prevent these errors Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
b54bef2058
commit
09b6755946
@ -31,7 +31,7 @@ loadaddr-$(CONFIG_TARGET_ramips_mt7621) := 0x80001000
|
|||||||
|
|
||||||
KERNEL_LOADADDR := $(loadaddr-y)
|
KERNEL_LOADADDR := $(loadaddr-y)
|
||||||
|
|
||||||
KERNEL_DTB = kernel-bin | patch-dtb | lzma
|
KERNEL_DTB = kernel-bin | patch-dtb | lzma -d21
|
||||||
define Device/Default
|
define Device/Default
|
||||||
PROFILES = Default $$(DTS)
|
PROFILES = Default $$(DTS)
|
||||||
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DTS).dts)
|
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DTS).dts)
|
||||||
|
Loading…
Reference in New Issue
Block a user