diff options
| author | Markus Stockhausen | 2025-08-06 05:54:29 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-08-08 16:29:21 +0000 |
| commit | 8eea85584633d6cf70c8a043629e09b1781d90f5 (patch) | |
| tree | cc8dd9ea52f25f7510dd634ab99cdf867dbcb712 | |
| parent | ebee9462273d3d30dbd29434e4f715ce39f80efc (diff) | |
| download | openwrt-8eea85584633d6cf70c8a043629e09b1781d90f5.tar.gz | |
realtek: switch Zyxel GS1900 initramfs recipe to rt-loader
These devices need a tiny (<8MB) initramfs. There are first
occurrences where this fails with newer kernels and diagnostic
packages.
Switch the recipe over to use lzma compression and rt-loader.
Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
Link: https://github.com/openwrt/openwrt/pull/19687
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/realtek/image/common.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/realtek/image/common.mk b/target/linux/realtek/image/common.mk index d68915ea90..39c97cd845 100644 --- a/target/linux/realtek/image/common.mk +++ b/target/linux/realtek/image/common.mk @@ -86,8 +86,9 @@ define Device/zyxel_gs1900 KERNEL_INITRAMFS := \ kernel-bin | \ append-dtb | \ - libdeflate-gzip | \ + rt-compress | \ zyxel-vers | \ - uImage gzip | \ + rt-loader | \ + uImage none | \ check-size 6976k endef |