Skip to content

Commit 3d21834

Browse files
authored
ffda-network-setup-mode: Add support for Sophos AP15
Added support for Sophos AP15
1 parent 0b488cf commit 3d21834

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

ffda-network-setup-mode/luasrc/usr/lib/lua/gluon/network-setup-mode.lua

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ local platform = require 'gluon.platform'
44
local M = {}
55

66
function M.supports_networked_activation()
7-
if platform.match('ramips', 'mt7621', {
8-
'zyxel,nwa55axe',
9-
}) then
10-
return true
11-
end
7+
return
8+
platform.match('ramips', 'mt7621', {
9+
'zyxel,nwa55axe',
10+
})
11+
or
12+
platform.match('ath79', 'generic', {
13+
'sophos,ap15',
14+
})
1215
end
1316

1417
return M

0 commit comments

Comments
 (0)