diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-08-09 17:40:42 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2019-08-09 21:37:20 +0200 |
commit | 296affa359673e4a3ee3284cc63595926a128bde (patch) | |
tree | 806a01e8d6ef409629a4656873ee77e1da2cc313 /target/linux/ath79/image | |
parent | 2a08bf36565f94b2a329668b1c04a2b52e067477 (diff) | |
download | upstream-296affa359673e4a3ee3284cc63595926a128bde.tar.gz upstream-296affa359673e4a3ee3284cc63595926a128bde.tar.bz2 upstream-296affa359673e4a3ee3284cc63595926a128bde.zip |
ath79: add missing IMAGE_SIZE for Comfast WR650AC v1/v2
When adding support in 9ed272fe9500 ("ath79: add support for
Comfast WR650AC v1/v2"), IMAGE_SIZE has not been added to device
definition.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ath79/image')
-rw-r--r-- | target/linux/ath79/image/generic.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/ath79/image/generic.mk b/target/linux/ath79/image/generic.mk index f9b6c1b450..5c8826b927 100644 --- a/target/linux/ath79/image/generic.mk +++ b/target/linux/ath79/image/generic.mk @@ -282,6 +282,7 @@ define Device/comfast_cf-wr650ac-v1 DEVICE_MODEL := CF-WR650AC DEVICE_VARIANT := v1 DEVICE_PACKAGES := kmod-ath10k-ct ath10k-firmware-qca988x-ct + IMAGE_SIZE := 16128k endef TARGET_DEVICES += comfast_cf-wr650ac-v1 @@ -291,6 +292,7 @@ define Device/comfast_cf-wr650ac-v2 DEVICE_MODEL := CF-WR650AC DEVICE_VARIANT := v2 DEVICE_PACKAGES := kmod-ath10k-ct ath10k-firmware-qca988x-ct + IMAGE_SIZE := 16000k endef TARGET_DEVICES += comfast_cf-wr650ac-v2 |