diff options
author | Shiji Yang <yangshiji66@qq.com> | 2022-12-01 18:49:45 +0800 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-01-07 16:56:16 +0100 |
commit | 3dbaf89296322489e7dafa336d89d8348c3d90c0 (patch) | |
tree | 2050308578ba473f539492ebff304c276bcc9447 | |
parent | 2f847da79d1d0a7a8639ed91851c75cf08a02a4e (diff) | |
download | upstream-3dbaf89296322489e7dafa336d89d8348c3d90c0.tar.gz upstream-3dbaf89296322489e7dafa336d89d8348c3d90c0.tar.bz2 upstream-3dbaf89296322489e7dafa336d89d8348c3d90c0.zip |
ramips: use default lzma dictionary size for better performance
limit dictionary size patch was introduced to solve the well known
"LZMA ERROR 1 - must RESET board to recover" error.
09b6755946409d8fd8 "ramips: limit dictionary size for lzma compression"
It seems that it has failed recently and we can use lzma loader to fix
this error by adding "$(Device/uimage-lzma-loader)". So just remove it
to use the default parameter -d24 for a higher compression ratio.
Signed-off-by: Shiji Yang <yangshiji66@qq.com>
-rw-r--r-- | target/linux/ramips/image/mt7621.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk index dd49583bf4..45ff52be35 100644 --- a/target/linux/ramips/image/mt7621.mk +++ b/target/linux/ramips/image/mt7621.mk @@ -7,7 +7,6 @@ include ./common-tp-link.mk DEFAULT_SOC := mt7621 -KERNEL_DTB += -d21 DEVICE_VARS += ELECOM_HWNAME LINKSYS_HWNAME ifdef CONFIG_LINUX_5_10 |