Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/user/supported_devices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ ath79-generic
- WZR-HP-AG300H / WZR-600DHP
- WZR-HP-G300NH (rtl8366s)

* COMFAST

- CF-EW71 (v2)

* devolo

- WiFi pro 1200e [#lan_as_wan]_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ end
local primary_addrs = {
{interface('lan'), {
{'ath79', 'generic', {
'comfast,cf-ew71-v2',
'glinet,gl-ar750s-nor',
'ocedo,raccoon',
'tplink,archer-a7-v5',
Expand Down
1 change: 1 addition & 0 deletions package/gluon-core/luasrc/usr/lib/lua/gluon/platform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ end

function M.is_outdoor_device()
if M.match('ath79', 'generic', {
'comfast,cf-ew71-v2',
'devolo,dvl1750x',
'librerouter,librerouter-v1',
'plasmacloud,pa300',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ local platform = require 'gluon.platform'
local M = {}

function M.get_status_led()
if platform.match('ath79', 'generic', {
'comfast,cf-ew71-v2',
}) then
return "blue:wlan"
end
if platform.match('ath79', 'nand', {
'glinet,gl-xe300',
}) then
Expand Down
6 changes: 6 additions & 0 deletions targets/ath79-generic
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ device('buffalo-wzr-600dhp', 'buffalo_wzr-600dhp')
device('buffalo-wzr-hp-g300nh-rtl8366s', 'buffalo_wzr-hp-g300nh-s')


-- COMFAST
device('comfast-cf-ew71-v2', 'comfast_cf-ew71-v2', {
factory = false,
})


-- devolo

device('devolo-dlan-pro-1200+-wifi-ac', 'devolo_dlan-pro-1200plus-ac', {
Expand Down
Loading