Skip to content
Snippets Groups Projects
Unverified Commit 1a5d69ae authored by David Bauer's avatar David Bauer Committed by GitHub
Browse files

Merge pull request #3314 from blocktrron/2302-backports-11072024

[v2023.2.x] treewide: pending devices and bugfixes from master
parents f4736922 c82206c7
No related branches found
No related tags found
No related merge requests found
...@@ -391,6 +391,7 @@ ramips-mt7620 ...@@ -391,6 +391,7 @@ ramips-mt7620
- EX3700 - EX3700
- EX3800 - EX3800
- EX6130
* Nexx * Nexx
...@@ -462,7 +463,7 @@ ramips-mt7621 ...@@ -462,7 +463,7 @@ ramips-mt7621
* Xiaomi * Xiaomi
- Xiaomi Mi Router 3G (v1, v2) - Xiaomi Mi Router 3G (v1, v2)
- Xiaomi Mi Router 4A (Gigabit Edition v1) - Xiaomi Mi Router 4A (Gigabit Edition v1, v2)
* ZBT * ZBT
...@@ -500,7 +501,7 @@ ramips-mt76x8 ...@@ -500,7 +501,7 @@ ramips-mt76x8
- Archer C20 (v4, v5) - Archer C20 (v4, v5)
- Archer C50 (v3, v4) - Archer C50 (v3, v4)
- RE200 (v2, v3) - RE200 (v2, v3, v4)
- TL-MR3020 (v3) - TL-MR3020 (v3)
- TL-MR3420 (v5) - TL-MR3420 (v5)
- TL-MR6400 (v5) - TL-MR6400 (v5)
......
...@@ -16,11 +16,11 @@ end ...@@ -16,11 +16,11 @@ end
local function is_swconfig() local function is_swconfig()
local has = false local has = false
uci:foreach("system", "switch", function() uci:foreach("network", "switch", function()
has = true has = true
end) end)
uci:foreach("system", "switch_vlan", function() uci:foreach("network", "switch_vlan", function()
has = true has = true
end) end)
......
...@@ -383,6 +383,12 @@ device('siemens-ws-ap3610', 'siemens_ws-ap3610', { ...@@ -383,6 +383,12 @@ device('siemens-ws-ap3610', 'siemens_ws-ap3610', {
-- Sophos -- Sophos
device('sophos-ap15', 'sophos_ap15', {
packages = ATH10K_PACKAGES_QCA9880,
factory = false,
broken = true, -- no button and no external console port
})
device('sophos-ap100', 'sophos_ap100', { device('sophos-ap100', 'sophos_ap100', {
packages = ATH10K_PACKAGES_QCA9880, packages = ATH10K_PACKAGES_QCA9880,
factory = false, factory = false,
......
...@@ -29,6 +29,11 @@ device('netgear-ex3700', 'netgear_ex3700', { ...@@ -29,6 +29,11 @@ device('netgear-ex3700', 'netgear_ex3700', {
factory_ext = '.chk', factory_ext = '.chk',
}) })
device('netgear-ex6130', 'netgear_ex6130', {
factory_ext = '.chk',
})
-- Nexx -- Nexx
device('nexx-wt3020-8m', 'nexx_wt3020-8m', { device('nexx-wt3020-8m', 'nexx_wt3020-8m', {
......
...@@ -120,6 +120,10 @@ device('xiaomi-mi-router-4a-gigabit-edition', 'xiaomi_mi-router-4a-gigabit', { ...@@ -120,6 +120,10 @@ device('xiaomi-mi-router-4a-gigabit-edition', 'xiaomi_mi-router-4a-gigabit', {
factory = false, factory = false,
}) })
device('xiaomi-mi-router-4a-gigabit-edition-v2', 'xiaomi_mi-router-4a-gigabit-v2', {
factory = false,
})
device('xiaomi-mi-router-3g', 'xiaomi_mi-router-3g', { device('xiaomi-mi-router-3g', 'xiaomi_mi-router-3g', {
factory = false, factory = false,
}) })
......
...@@ -62,6 +62,8 @@ device('tp-link-re200-v2', 'tplink_re200-v2') ...@@ -62,6 +62,8 @@ device('tp-link-re200-v2', 'tplink_re200-v2')
device('tp-link-re200-v3', 'tplink_re200-v3') device('tp-link-re200-v3', 'tplink_re200-v3')
device('tp-link-re200-v4', 'tplink_re200-v4')
device('tp-link-tl-mr3020-v3', 'tplink_tl-mr3020-v3', { device('tp-link-tl-mr3020-v3', 'tplink_tl-mr3020-v3', {
factory = false, factory = false,
extra_images = { extra_images = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment