diff options
author | Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com> | 2020-04-08 21:43:36 +0300 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-04-08 22:03:40 +0200 |
commit | fea232ae8feb6af780fd4fa78ebe9231778bf75a (patch) | |
tree | 7619c49d25ce84bd8ee91f592d68918d72e9c72c /target/linux/ramips | |
parent | 85aef6f627040cd0909bd549abb721eafa511353 (diff) | |
download | upstream-fea232ae8feb6af780fd4fa78ebe9231778bf75a.tar.gz upstream-fea232ae8feb6af780fd4fa78ebe9231778bf75a.tar.bz2 upstream-fea232ae8feb6af780fd4fa78ebe9231778bf75a.zip |
ramips: use full 8MB flash on ZyXEL Keenetic
ZyXEL Keenetic has 8MB flash, but OpenWrt uses only 4MB.
This commit fixes the problem.
WikiDevi page [1] says that ZyXEL Keenetic has FLA1: 8 MiB, there is
an article with specs [2] (in Russian).
[1] https://wikidevi.wi-cat.ru/ZyXEL_Keenetic
[2] https://3dnews.ru/608774/page-2.html
Fixes: FS#2487
Fixes: a7cbf59e0e04 ("ramips: add new device ZyXEL Keenetic as kn")
Signed-off-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Diffstat (limited to 'target/linux/ramips')
-rw-r--r-- | target/linux/ramips/dts/rt3052_zyxel_keenetic.dts | 2 | ||||
-rw-r--r-- | target/linux/ramips/image/rt305x.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/dts/rt3052_zyxel_keenetic.dts b/target/linux/ramips/dts/rt3052_zyxel_keenetic.dts index ad641f47e4..436743cff3 100644 --- a/target/linux/ramips/dts/rt3052_zyxel_keenetic.dts +++ b/target/linux/ramips/dts/rt3052_zyxel_keenetic.dts @@ -48,7 +48,7 @@ partition@50000 { compatible = "denx,uimage"; label = "firmware"; - reg = <0x50000 0x3b0000>; + reg = <0x50000 0x7b0000>; }; }; }; diff --git a/target/linux/ramips/image/rt305x.mk b/target/linux/ramips/image/rt305x.mk index 411f014800..819e9ac7cf 100644 --- a/target/linux/ramips/image/rt305x.mk +++ b/target/linux/ramips/image/rt305x.mk @@ -1150,7 +1150,7 @@ TARGET_DEVICES += zorlik_zl5900v2 define Device/zyxel_keenetic SOC := rt3052 BLOCKSIZE := 64k - IMAGE_SIZE := 3776k + IMAGE_SIZE := 7872k DEVICE_VENDOR := ZyXEL DEVICE_MODEL := Keenetic DEVICE_PACKAGES := kmod-usb2 kmod-usb-ehci kmod-usb-ledtrig-usbport |