diff options
author | Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl> | 2021-03-03 22:46:50 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-03-18 16:17:43 +0100 |
commit | c027dbac5a5222e6be4706a7a6a0effefce8ae76 (patch) | |
tree | 8e687979cc5196ac94aa4ed55dd70a2729bedb17 | |
parent | 9ac47ee46918c45b91f4e4d1fa76b1e26b9d57fe (diff) | |
download | upstream-c027dbac5a5222e6be4706a7a6a0effefce8ae76.tar.gz upstream-c027dbac5a5222e6be4706a7a6a0effefce8ae76.tar.bz2 upstream-c027dbac5a5222e6be4706a7a6a0effefce8ae76.zip |
lantiq: set maximum kernel size for ARV7519RW22
Some users report that current snapshot producies non-bootable images.
Stock uboot can boot images if the kernel is smaller than 2MB.
Set maximum kernel size and disable image building for this board.
Ref: https://forum.openwrt.org/t/astoria-arv7519rw22-bootloops-after-upgrade/89843
Signed-off-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
-rw-r--r-- | target/linux/lantiq/image/vr9.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/lantiq/image/vr9.mk b/target/linux/lantiq/image/vr9.mk index d3420bb2b9..1f045ee594 100644 --- a/target/linux/lantiq/image/vr9.mk +++ b/target/linux/lantiq/image/vr9.mk @@ -17,9 +17,11 @@ define Device/arcadyan_arv7519rw22 DEVICE_ALT0_VARIANT := 2.1 DEVICE_ALT1_VENDOR := Astoria Networks DEVICE_ALT1_MODEL := ARV7519RW22 + KERNEL_SIZE := 2048k IMAGE_SIZE := 31232k DEVICE_PACKAGES := kmod-usb-dwc2 SUPPORTED_DEVICES += ARV7519RW22 + DEFAULT := n endef TARGET_DEVICES += arcadyan_arv7519rw22 |