diff options
author | Tomasz Maciej Nowak <tmn505@gmail.com> | 2020-12-17 17:24:27 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-12-19 19:42:00 +0100 |
commit | 13581a5fa7ed09aa04393d496f44d0bf068e3024 (patch) | |
tree | 3676e55b1aedf917497440336300a2b4e99829ce /target/linux/ath79/image | |
parent | 0d96d36841e817f368e86d4af725570d757cb0ca (diff) | |
download | upstream-13581a5fa7ed09aa04393d496f44d0bf068e3024.tar.gz upstream-13581a5fa7ed09aa04393d496f44d0bf068e3024.tar.bz2 upstream-13581a5fa7ed09aa04393d496f44d0bf068e3024.zip |
ath79: airtight c-75: use second flash chip
The flash capacity is divided in two flash chips and currently only
first is used. Increase available space for OpenWrt by additional 16 MiB
using mtd-concat driver. Because U-Boot might not be able to load kernel
image spanned through two flash chips, the size of kernel is limited
to space available on first first chip.
Cc: Vladimir Georgievsky <vladimir.georgievsky@yahoo.com>
Signed-off-by: Tomasz Maciej Nowak <tmn505@gmail.com>
Diffstat (limited to 'target/linux/ath79/image')
-rw-r--r-- | target/linux/ath79/image/generic.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/ath79/image/generic.mk b/target/linux/ath79/image/generic.mk index baaea00c30..4d181245a6 100644 --- a/target/linux/ath79/image/generic.mk +++ b/target/linux/ath79/image/generic.mk @@ -246,7 +246,8 @@ define Device/airtight_c-75 DEVICE_ALT1_VENDOR := WatchGuard DEVICE_ALT1_MODEL := AP320 DEVICE_PACKAGES := ath10k-firmware-qca988x-ct kmod-ath10k-ct kmod-usb2 - IMAGE_SIZE := 15936k + IMAGE_SIZE := 32320k + KERNEL_SIZE := 15936k endef TARGET_DEVICES += airtight_c-75 |