ramips-mt7621: add Ubiquiti UniFi Switch Flex

This commit is contained in:
Tom Herbers 2022-09-20 02:53:45 +02:00
parent 115aad0931
commit 489d87c18e
No known key found for this signature in database
GPG Key ID: 841A5B0DCEDA6192
4 changed files with 14 additions and 0 deletions
docs/user
package/gluon-core/luasrc
lib/gluon/upgrade
usr/lib/lua/gluon
targets

View File

@ -355,6 +355,7 @@ ramips-mt7621
- EdgeRouter X
- EdgeRouter X-SFP
- UniFi 6 Lite
- UniFi Switch Flex
* ZBT

View File

@ -67,6 +67,10 @@ elseif platform.match('ramips', 'mt7621', {
'netgear,wac104',
}) then
lan_ifname, wan_ifname = 'lan2 lan3 lan4', 'lan1'
elseif platform.match('ramips', 'mt7621', {
'ubnt,usw-flex',
}) then
lan_ifname, wan_ifname = 'lan2 lan3 lan4 lan5', 'lan1'
end
if wan_ifname and lan_ifname then

View File

@ -59,6 +59,10 @@ function M.is_outdoor_device()
'mikrotik,sxtsq-5-ac',
}) then
return true
elseif M.match('ramips', 'mt7621', {
'ubnt,usw-flex',
}) then
return true
end
return false

View File

@ -109,3 +109,8 @@ device('ubiquiti-edgerouter-x-sfp', 'ubnt_edgerouter-x-sfp', {
'ubnt-erx-sfp',
},
})
device('ubiquiti-unifi-switch-flex', 'ubnt_usw-flex', {
factory = false,
packages = {'-hostapd-mini', 'poemgr'},
})