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

Merge pull request #2918 from Djfe/add_MR6400v5

ramips-mt76x8: add support for TP-Link TL-MR6400 v5
parents 133e499d 850300af
No related branches found
No related tags found
No related merge requests found
...@@ -444,6 +444,7 @@ ramips-mt76x8 ...@@ -444,6 +444,7 @@ ramips-mt76x8
- RE305 (v1) [#device-class-tiny] - RE305 (v1) [#device-class-tiny]
- TL-MR3020 (v3) - TL-MR3020 (v3)
- TL-MR3420 (v5) - TL-MR3420 (v5)
- TL-MR6400 (v5)
- TL-WA801ND (v5) - TL-WA801ND (v5)
- TL-WR841N (v13) - TL-WR841N (v13)
- TL-WR902AC (v3) - TL-WR902AC (v3)
......
...@@ -58,6 +58,10 @@ elseif platform.match('ramips', 'mt7621', { ...@@ -58,6 +58,10 @@ elseif platform.match('ramips', 'mt7621', {
'wavlink,ws-wn572hp3-4g', 'wavlink,ws-wn572hp3-4g',
}) then }) then
setup_ncm_qmi('/dev/ttyUSB2', 'ncm', 15) setup_ncm_qmi('/dev/ttyUSB2', 'ncm', 15)
elseif platform.match('ramips', 'mt76x8', {
'tplink,tl-mr6400-v5',
}) then
setup_ncm_qmi('/dev/cdc-wdm0', 'qmi', 15)
end end
uci:save('network') uci:save('network')
...@@ -85,6 +85,10 @@ function M.is_cellular_device() ...@@ -85,6 +85,10 @@ function M.is_cellular_device()
'wavlink,ws-wn572hp3-4g', 'wavlink,ws-wn572hp3-4g',
}) then }) then
return true return true
elseif M.match('ramips', 'mt76x8', {
'tplink,tl-mr6400-v5',
}) then
return true
end end
return false return false
......
...@@ -80,6 +80,13 @@ device('tp-link-tl-mr3420-v5', 'tplink_tl-mr3420-v5', { ...@@ -80,6 +80,13 @@ device('tp-link-tl-mr3420-v5', 'tplink_tl-mr3420-v5', {
}, },
}) })
device('tp-link-tl-mr6400-v5', 'tplink_tl-mr6400-v5', {
factory = false,
extra_images = {
{'-squashfs-tftp-recovery', '-bootloader', '.bin'},
},
})
device('tp-link-tl-wa801nd-v5', 'tplink_tl-wa801nd-v5', { device('tp-link-tl-wa801nd-v5', 'tplink_tl-wa801nd-v5', {
factory = false, factory = false,
extra_images = { extra_images = {
...@@ -101,6 +108,7 @@ device('tp-link-tl-wr902ac-v3', 'tplink_tl-wr902ac-v3', { ...@@ -101,6 +108,7 @@ device('tp-link-tl-wr902ac-v3', 'tplink_tl-wr902ac-v3', {
}, },
}) })
-- VoCore 2 -- VoCore 2
device('vocore2', 'vocore_vocore2', { device('vocore2', 'vocore_vocore2', {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment