Merge pull request #2581 from AiyionPrime/ath79-migrate-re450

ath79-generic: (re)add RE450 v1
ath79-generic: (re)add RE355 v1
This commit is contained in:
Andreas Ziegler 2022-07-18 22:13:16 +02:00 committed by GitHub
commit 2d763e4008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View File

@ -102,6 +102,7 @@ ath79-generic
- CPE510 (v3.0) - CPE510 (v3.0)
- CPE710 (v1.0) - CPE710 (v1.0)
- EAP225-Outdoor (v1) - EAP225-Outdoor (v1)
- RE450 (v1)
- TL-WDR3500 (v1) - TL-WDR3500 (v1)
- TL-WDR3600 (v1) - TL-WDR3600 (v1)
- TL-WDR4300 (v1) - TL-WDR4300 (v1)

View File

@ -408,6 +408,23 @@ device('tp-link-eap225-outdoor-v1', 'tplink_eap225-outdoor-v1', {
packages = ATH10K_PACKAGES_QCA9888, packages = ATH10K_PACKAGES_QCA9888,
}) })
device('tp-link-re355-v1', 'tplink_re355-v1', {
manifest_aliases = {
'tp-link-re355', -- upgrade from OpenWrt 19.07
},
packages = ATH10K_PACKAGES_QCA9880,
broken = true, -- OOM with 5GHz enabled in most environments if device is 64M RAM variant
class = 'tiny', -- Only 6M of usable Firmware space
})
device('tp-link-re450-v1', 'tplink_re450-v1', {
packages = ATH10K_PACKAGES_QCA9880,
manifest_aliases = {
'tp-link-re450', -- upgrade from OpenWrt 19.07
},
class = 'tiny', -- Only 6M of usable Firmware space
})
device('tp-link-tl-wdr3500-v1', 'tplink_tl-wdr3500-v1') device('tp-link-tl-wdr3500-v1', 'tplink_tl-wdr3500-v1')
device('tp-link-tl-wdr3600-v1', 'tplink_tl-wdr3600-v1') device('tp-link-tl-wdr3600-v1', 'tplink_tl-wdr3600-v1')
device('tp-link-tl-wdr4300-v1', 'tplink_tl-wdr4300-v1') device('tp-link-tl-wdr4300-v1', 'tplink_tl-wdr4300-v1')