2010-04-11 17:47:23 +00:00
|
|
|
#!/bin/sh
|
2013-02-18 09:56:29 +00:00
|
|
|
# Copyright (C) 2010-2013 OpenWrt.org
|
2010-04-11 17:47:23 +00:00
|
|
|
|
2017-05-12 20:36:07 +00:00
|
|
|
. /lib/functions.sh
|
2013-02-18 09:56:29 +00:00
|
|
|
. /lib/functions/leds.sh
|
2010-04-11 17:47:23 +00:00
|
|
|
|
|
|
|
get_status_led() {
|
2017-05-12 20:36:07 +00:00
|
|
|
board=$(board_name)
|
2015-08-17 06:24:47 +00:00
|
|
|
|
|
|
|
case $board in
|
|
|
|
3g150b|\
|
|
|
|
3g300m|\
|
|
|
|
w150m)
|
|
|
|
status_led="$board:blue:ap"
|
|
|
|
;;
|
|
|
|
3g-6200n|\
|
|
|
|
ar670w|\
|
|
|
|
ar725w|\
|
|
|
|
br-6475nd|\
|
2016-10-13 19:00:06 +00:00
|
|
|
c50|\
|
2016-05-02 03:57:40 +00:00
|
|
|
dch-m225|\
|
2016-06-30 13:18:03 +00:00
|
|
|
dir-860l-b1|\
|
2015-08-17 06:24:47 +00:00
|
|
|
e1700|\
|
2017-07-30 13:42:38 +00:00
|
|
|
ex2700|\
|
2017-03-03 14:36:51 +00:00
|
|
|
ex3700|\
|
2015-08-17 06:24:47 +00:00
|
|
|
fonera20n|\
|
2017-09-09 13:16:11 +00:00
|
|
|
hg255d|\
|
2017-04-27 18:02:05 +00:00
|
|
|
kn|\
|
2016-11-28 18:41:51 +00:00
|
|
|
kn_rc|\
|
|
|
|
kn_rf|\
|
2016-10-29 12:26:58 +00:00
|
|
|
kng_rc|\
|
2016-04-20 17:19:05 +00:00
|
|
|
mzk-750dhp|\
|
2015-08-17 06:24:47 +00:00
|
|
|
mzk-dp150n|\
|
|
|
|
mzk-w300nh2|\
|
|
|
|
nbg-419n|\
|
2016-07-24 15:37:52 +00:00
|
|
|
nbg-419n2|\
|
2015-08-17 06:24:47 +00:00
|
|
|
pwh2004|\
|
2017-03-11 07:44:33 +00:00
|
|
|
r6220|\
|
ramips: add support for TP-Link TL-WR840N v4 and TL-WR841N v13
TP-Link TL-WR840N v4 and TL-WR841N v13 are simple N300 routers with
5-port FE switch and non-detachable antennas. Both are very similar
and are based on MediaTek MT7628NN (aka MT7628N) WiSoC.
The difference between these two models is in number of available
LEDs, buttons and power input switch.
This work is partially based on GitHub PR#974.
Specification:
- MT7628N/N (580 MHz)
- 64 MB of RAM (DDR2)
- 8 MB of FLASH
- 2T2R 2.4 GHz
- 5x 10/100 Mbps Ethernet
- 2x external, non-detachable antennas
- UART (J1) header on PCB (115200 8n1)
- TL-WR840N v4: 5x LED (GPIO-controlled), 1x button
- TL-WR841N v13: 8x LED (GPIO-controlled*), 2x button, power input
switch
* WAN LED in TL-WR841N v13 is a dual-color, dual-leads type which isn't
(fully) supported by gpio-leds driver. This type of LED requires both
GPIOs state change at the same time to select color or turn it off.
For now, we support/use only the green part of the LED.
Factory image notes:
These devices use version 3 of TP-Link header, fortunately without RSA
signature (at least in case of devices sold in Europe). The difference
lays in the requirement for a non-zero value in "Additional Hardware
Version" field. Ideally, it should match the value stored in vendor
firmware header on device ("0x4"/"0x13" for these devices) but it seems
that anything other than "0" is correct.
We are able to prepare factory firwmare file which is accepted and
(almost) correctly flashed from the vendor GUI. As it turned out, it
accepts files without U-Boot image with second header at the beginning
but due to some kind of bug in upgrade routine, flashed image gets
corrupted before it's written to flash.
Tests showed that the GUI upgrade routine copies value of "Additional
Hardware Version" from existing firmware into offset "0x2023c" in
provided file, _before_ storing it in flash. In case of vendor firmware
upgrade files (which all include U-Boot image and two headers), this
offset points to the matching field in kernel+rootfs firmware part
header. Unfortunately, in case of LEDE factory image file which contains
only one header, it points to the offset "0x2023c" in kernel image. This
leads to a corrupted kernel and ends up with a "soft-bricked" device.
The good news is that U-Boot in these devices contains well known tftp
recovery mode, which can be triggered with "reset" button. What's more,
in comparison to some of older MediaTek based TP-Link devices, this
recovery mode doesn't write whole file at offset "0x0" in flash, without
verifying provided file in advance. In case of recovery mode in these
devices, first "0x20000" bytes are always skipped and "0x7a0000" bytes
from rest of the file are stored in flash at offset "0x20000".
Flash instruction:
Until (if at all) TP-Link fixes described problem, the only way to flash
LEDE image in these devices is to use tftp recovery mode in U-Boot:
1. Configure PC with static IP 192.168.0.66/24 and tftp server.
2. Rename "lede-ramips-mt7628-tl-wr84...-squashfs-tftp-recovery.bin"
to "tp_recovery.bin" and place it in tftp server directory.
3. Connect PC with one of LAN ports, press the reset button, power up
the router and keep button pressed for around 6-7 seconds, until
device starts downloading the file.
4. Router will download file from server, write it to flash and reboot.
To access U-Boot CLI, keep pressed "4" key during boot.
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
2017-06-21 12:16:15 +00:00
|
|
|
tl-wr840n-v4|\
|
|
|
|
tl-wr841n-v13|\
|
2016-10-10 01:24:42 +00:00
|
|
|
vr500|\
|
2015-08-17 06:24:47 +00:00
|
|
|
wnce2001|\
|
2016-04-26 11:43:53 +00:00
|
|
|
wndr3700v5|\
|
2015-08-17 06:24:47 +00:00
|
|
|
x5|\
|
|
|
|
x8|\
|
2017-07-30 13:42:38 +00:00
|
|
|
xdxrn502j|\
|
|
|
|
wn3000rpv3)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:power"
|
2014-06-13 09:16:15 +00:00
|
|
|
;;
|
2016-09-27 05:16:16 +00:00
|
|
|
3g-6200nl)
|
|
|
|
status_led="$board:green:internet"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
a5-v11|\
|
2016-04-26 11:43:01 +00:00
|
|
|
cs-qr10|\
|
2015-08-17 06:24:47 +00:00
|
|
|
d105|\
|
|
|
|
dcs-930l-b1|\
|
|
|
|
hlk-rm04|\
|
2016-03-04 08:33:09 +00:00
|
|
|
jhr-n825r|\
|
2015-08-17 06:24:47 +00:00
|
|
|
mpr-a1|\
|
2016-04-29 11:34:56 +00:00
|
|
|
mpr-a2|\
|
2017-07-30 13:42:38 +00:00
|
|
|
mzk-ex750np)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:red:power"
|
2012-01-23 10:23:32 +00:00
|
|
|
;;
|
2017-04-01 08:46:44 +00:00
|
|
|
ai-br100|\
|
|
|
|
ht-tm02)
|
|
|
|
status_led="$board:blue:wlan"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
all0239-3g|\
|
|
|
|
dcs-930|\
|
|
|
|
dir-300-b1|\
|
|
|
|
dir-300-b7|\
|
|
|
|
dir-320-b1|\
|
|
|
|
dir-600-b1|\
|
|
|
|
dir-610-a1|\
|
|
|
|
dir-615-d|\
|
|
|
|
dir-615-h1|\
|
|
|
|
dir-620-a1|\
|
|
|
|
dir-620-d1|\
|
2016-11-13 22:36:00 +00:00
|
|
|
dwr-512-b|\
|
2017-07-22 01:15:56 +00:00
|
|
|
gb-pc1|\
|
2015-08-17 06:24:47 +00:00
|
|
|
hpm|\
|
|
|
|
hw550-3g|\
|
2016-09-08 22:57:31 +00:00
|
|
|
mac1200rv2|\
|
2015-08-17 06:24:47 +00:00
|
|
|
miniembwifi|\
|
|
|
|
mofi3500-3gn|\
|
|
|
|
rut5xx|\
|
|
|
|
v11st-fe|\
|
2015-11-02 10:18:19 +00:00
|
|
|
wmr-300|\
|
2017-04-07 21:52:27 +00:00
|
|
|
zbt-wg2626)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:status"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
asl26555-8M|\
|
|
|
|
asl26555-16M)
|
|
|
|
status_led="asl26555:green:power"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
atp-52b|\
|
2017-02-27 20:59:50 +00:00
|
|
|
ew1200|\
|
2015-08-17 06:24:47 +00:00
|
|
|
ip2202)
|
|
|
|
status_led="$board:green:run"
|
2013-04-25 19:02:53 +00:00
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
awapn2403|\
|
2016-04-21 19:46:59 +00:00
|
|
|
dir-645|\
|
2016-05-10 16:17:54 +00:00
|
|
|
sk-wb8|\
|
2016-04-21 19:46:59 +00:00
|
|
|
wrh-300cr)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:wps"
|
2013-02-02 17:01:50 +00:00
|
|
|
;;
|
2017-09-06 09:14:16 +00:00
|
|
|
c108)
|
|
|
|
status_led="$board:green:lan"
|
|
|
|
;;
|
2016-02-15 18:45:22 +00:00
|
|
|
cf-wr800n|\
|
|
|
|
psg1208)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:white:wps"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2017-04-21 00:47:44 +00:00
|
|
|
psg1218a|\
|
|
|
|
psg1218b)
|
2016-10-21 09:06:39 +00:00
|
|
|
status_led="$board:yellow:status"
|
2016-09-30 11:41:12 +00:00
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
cy-swr1100|\
|
|
|
|
w502u)
|
|
|
|
status_led="$board:blue:wps"
|
|
|
|
;;
|
ramips: add support for TP-Link Archer C20 v1
TP-Link Archer C20 v1 is a router with 5-port FE switch and
non-detachable antennas. It's very similiar to TP-Link Archer C50.
Also it's based on MediaTek MT7620A+MT7610EN.
Specification:
- MediaTek MT7620A (580 Mhz)
- 64 MB of RAM
- 8 MB of FLASH
- 2T2R 2.4 GHz and 1T1R 5 GHz
- 5x 10/100 Mbps Ethernet
- 2x external, non-detachable antennas
- UART (J1) header on PCB (115200 8n1)
- 8x LED (GPIO-controlled*), 2x button, power input switch
- 1 x USB 2.0 port
* WAN LED in this devices is a dual-color, dual-leads type which isn't
(fully) supported by gpio-leds driver. This type of LED requires both
GPIOs state change at the same time to select color or turn it off.
For now, we support/use only the blue part of the LED.
* MT7610EN ac chip isn't not supported by LEDE. Therefore 5Ghz won't
work.
Factory image notes:
These devices use version 3 of TP-Link header, fortunately without RSA
signature (at least in case of devices sold in Europe). The difference
lays in the requirement for a non-zero value in "Additional Hardware
Version" field. Ideally, it should match the value stored in vendor
firmware header on device.
We are able to prepare factory firwmare file which is accepted and
(almost) correctly flashed from the vendor GUI. As it turned out, it
accepts files without U-Boot image with second header at the beginning
but due to some kind of bug in upgrade routine, flashed image gets
corrupted before it's written to flash. So, to flash this device we must
to prepare image using original firmware from tp-link site with uboot.
Flash instruction:
Until (if at all) TP-Link fixes described problem, the only way to flash
LEDE image in these devices is to use tftp recovery mode in U-Boot.
There are two ways to flash the device to LEDE:
1) Using tftp mode with UART connection and original LEDE image
- Place lede-ramips-mt7620-ArcherC20-squashfs-factory.bin in tftp
server directory
- Configure PC with static IP 192.168.0.66/24 and tftp server.
- Connect PC with one of LAN ports, power up the router and press
key "4" to access U-Boot CLI.
- Use the following commands to update the device to LEDE:
setenv serverip 192.168.0.66
tftp 0x80060000 lede-ramips-mt7620-ArcherC20-squashfs-factory.bin
erase tplink 0x20000 0x7a0000
cp.b 0x80060000 0x20000 0x7a0000
reset
- After that the device will reboot and boot to LEDE
2) Using tftp mode without UART connection but require some
manipulations with target image
- Download and unpack TP-Link Archer C20 v1 firmware from original web
site
- Split uboot.bin from original firmware by this command (example):
dd if=Archer_C20v1_0.9.1_4.0_up_boot(160427)_2016-04-27_13.53.59.bin of=uboot.bin bs=512 count=256 skip=1
- Create ArcherC20V1_tp_recovery.bin using this command:
cat uboot.bin lede-ramips-mt7620-ArcherC20-squashfs-factory.bin > ArcherC20V1_tp_recovery.bin
- Place ArcherC20V1_tp_recovery.bin in tftp server directory.
- Configure PC with static IP 192.168.0.66/24 and tftp server.
- Connect PC with one of LAN ports, press the reset button, power up
the router and keep button pressed for around 6-7 seconds, until
device starts downloading the file.
- Router will download file from server, write it to flash and reboot.
Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com>
2017-09-08 09:39:17 +00:00
|
|
|
c20|\
|
2017-02-04 20:28:52 +00:00
|
|
|
d240|\
|
2015-08-17 06:24:47 +00:00
|
|
|
dap-1350|\
|
|
|
|
na930|\
|
2015-12-11 15:03:50 +00:00
|
|
|
pbr-m1|\
|
2017-07-23 19:06:44 +00:00
|
|
|
re350-v1|\
|
2017-05-05 15:54:26 +00:00
|
|
|
rt-ac51u|\
|
2015-08-17 06:24:47 +00:00
|
|
|
rt-n13u|\
|
|
|
|
rt-n14u|\
|
|
|
|
rt-n15|\
|
|
|
|
rt-n56u|\
|
|
|
|
wl-330n|\
|
|
|
|
wl-330n3g|\
|
|
|
|
wli-tx4-ag300n|\
|
|
|
|
y1|\
|
|
|
|
y1s)
|
|
|
|
status_led="$board:blue:power"
|
2014-11-05 14:37:13 +00:00
|
|
|
;;
|
2015-09-14 20:08:55 +00:00
|
|
|
db-wrt01|\
|
2016-09-27 06:23:27 +00:00
|
|
|
esr-9753|\
|
|
|
|
pbr-d1)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:orange:power"
|
2011-12-23 14:27:10 +00:00
|
|
|
;;
|
2016-12-01 14:08:22 +00:00
|
|
|
f5d8235-v1)
|
|
|
|
status_led="$board:blue:wired"
|
|
|
|
;;
|
2012-01-23 10:23:32 +00:00
|
|
|
f5d8235-v2)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:blue:router"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2016-08-10 00:18:32 +00:00
|
|
|
f7c027|\
|
|
|
|
timecloud)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:orange:status"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2015-10-05 10:25:47 +00:00
|
|
|
hc5*61|\
|
2017-02-24 23:19:15 +00:00
|
|
|
hc5661a|\
|
2016-03-04 08:33:09 +00:00
|
|
|
jhr-n805r|\
|
|
|
|
jhr-n926r|\
|
2015-10-05 10:25:47 +00:00
|
|
|
mlw221|\
|
|
|
|
mlwg2)
|
|
|
|
status_led="$board:blue:system"
|
|
|
|
;;
|
2017-02-22 12:47:22 +00:00
|
|
|
hc5962)
|
|
|
|
status_led="$board:white:status"
|
|
|
|
;;
|
2017-07-18 05:02:51 +00:00
|
|
|
k2p|\
|
|
|
|
m3|\
|
|
|
|
miwifi-nano)
|
|
|
|
status_led="$board:blue:status"
|
|
|
|
;;
|
2015-11-03 13:32:02 +00:00
|
|
|
linkits7688| \
|
|
|
|
linkits7688d)
|
|
|
|
[ "$1" = "upgrade" ] && status_led="mediatek:orange:wifi"
|
|
|
|
;;
|
2015-01-17 14:06:13 +00:00
|
|
|
m2m)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:blue:wifi"
|
2013-08-01 14:30:53 +00:00
|
|
|
;;
|
2017-05-17 10:18:45 +00:00
|
|
|
gl-mt300n-v2)
|
|
|
|
status_led="$board:red:wlan"
|
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
m4-4M|\
|
|
|
|
m4-8M)
|
|
|
|
status_led="m4:blue:status"
|
|
|
|
;;
|
2017-08-12 14:56:11 +00:00
|
|
|
mir3g)
|
|
|
|
status_led="$board:yellow:status"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
miwifi-mini|\
|
|
|
|
zte-q7)
|
|
|
|
status_led="$board:red:status"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2015-05-23 15:27:05 +00:00
|
|
|
mr-102n)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:amber:status"
|
2011-08-22 20:41:49 +00:00
|
|
|
;;
|
2016-09-24 19:41:43 +00:00
|
|
|
mr200)
|
|
|
|
status_led="$board:white:power"
|
|
|
|
;;
|
2011-07-28 10:56:32 +00:00
|
|
|
nw718)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:amber:cpu"
|
2011-07-28 10:56:32 +00:00
|
|
|
;;
|
2016-09-27 06:25:04 +00:00
|
|
|
newifi-d1)
|
|
|
|
status_led="$board:blue:status"
|
|
|
|
;;
|
2017-01-09 19:59:56 +00:00
|
|
|
omega2| \
|
|
|
|
omega2p)
|
|
|
|
status_led="$board:amber:system"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
oy-0001|\
|
2017-04-12 05:53:56 +00:00
|
|
|
sl-r7205)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:wifi"
|
2011-12-14 20:51:26 +00:00
|
|
|
;;
|
2012-06-19 09:52:15 +00:00
|
|
|
psr-680w)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:red:wan"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
px-4885-4M|\
|
|
|
|
px-4885-8M)
|
|
|
|
status_led="px-4885:orange:wifi"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
re6500|\
|
|
|
|
whr-1166d|\
|
2016-05-28 10:04:17 +00:00
|
|
|
whr-600d|\
|
|
|
|
widora-neo)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:orange:wifi"
|
2012-02-13 15:18:04 +00:00
|
|
|
;;
|
2016-04-26 11:43:06 +00:00
|
|
|
mzk-ex300np|\
|
2015-08-17 06:24:47 +00:00
|
|
|
rt-n10-plus|\
|
2017-06-09 11:02:56 +00:00
|
|
|
tew-638apb-v2|\
|
2015-08-17 06:24:47 +00:00
|
|
|
tew-691gr|\
|
|
|
|
tew-692gr|\
|
|
|
|
ur-326n4g|\
|
|
|
|
ur-336un|\
|
2017-04-07 22:34:48 +00:00
|
|
|
wf-2881)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:wps"
|
2014-06-02 12:42:48 +00:00
|
|
|
;;
|
ramips: add support for MikroTik hEX v3 (RB750Gr3)
The MikroTik hEX v3 (RB750Gr3) is a MT7621AT board which is similar to most MT7621 reference designs, it can be easily supported by this patch; however, the stock RouterBOOT bootloader has to be replaced by a MT7621 SDK U-Boot such as https://github.com/ndoo/RB750Gr3-U-Boot - U-Boot configured for the RB750Gr3 (16MiB SPI flash, 256MiB DDR3 RAM at 1200MHz).
RouterBOOT, the stock bootloader, does not initialize the UART and boots silently, making it preferable to replace it with a MT7621 SDK U-Boot with UART (57600 8N1) that supports HTTP, TFTP or serial upload of sysupgrade firmware and U-Boot.
Furthermore, RouterOS, the stock firmware, is contained in a proprietary modification of SquashFS without GPL sources; UART is also disabled in stock firmware.
The combination of LEDE firmware generated by this PR and MT7621 SDK U-Boot expects the printed MAC address to reside at offset `0xe000` of the factory partition (absolute offset is `0x4e000`); this is similar to the factory MAC address offset for several other MT7621 devices.
A 16MiB flash dump suitable for use with flashrom will be provided if/once this patch is accepted and binaries are built by LEDE buildbot. Alternatively, writing the U-Boot to the SPI flash starting at 0x0 offset and booting the board with serial console attached will allow TFTP, HTTP or serial upload of sysupgrade firmware.
Signed-off-by: Andrew Yong <me@ndoo.sg>
2016-10-18 20:05:32 +00:00
|
|
|
rb750gr3)
|
2016-11-26 14:15:21 +00:00
|
|
|
status_led="$board:blue:pwr"
|
ramips: add support for MikroTik hEX v3 (RB750Gr3)
The MikroTik hEX v3 (RB750Gr3) is a MT7621AT board which is similar to most MT7621 reference designs, it can be easily supported by this patch; however, the stock RouterBOOT bootloader has to be replaced by a MT7621 SDK U-Boot such as https://github.com/ndoo/RB750Gr3-U-Boot - U-Boot configured for the RB750Gr3 (16MiB SPI flash, 256MiB DDR3 RAM at 1200MHz).
RouterBOOT, the stock bootloader, does not initialize the UART and boots silently, making it preferable to replace it with a MT7621 SDK U-Boot with UART (57600 8N1) that supports HTTP, TFTP or serial upload of sysupgrade firmware and U-Boot.
Furthermore, RouterOS, the stock firmware, is contained in a proprietary modification of SquashFS without GPL sources; UART is also disabled in stock firmware.
The combination of LEDE firmware generated by this PR and MT7621 SDK U-Boot expects the printed MAC address to reside at offset `0xe000` of the factory partition (absolute offset is `0x4e000`); this is similar to the factory MAC address offset for several other MT7621 devices.
A 16MiB flash dump suitable for use with flashrom will be provided if/once this patch is accepted and binaries are built by LEDE buildbot. Alternatively, writing the U-Boot to the SPI flash starting at 0x0 offset and booting the board with serial console attached will allow TFTP, HTTP or serial upload of sysupgrade firmware.
Signed-off-by: Andrew Yong <me@ndoo.sg>
2016-10-18 20:05:32 +00:00
|
|
|
;;
|
2015-07-24 09:09:22 +00:00
|
|
|
sap-g3200u3)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:usb"
|
2012-02-15 21:13:11 +00:00
|
|
|
;;
|
2017-02-19 08:46:44 +00:00
|
|
|
u25awf-h1)
|
|
|
|
status_led="u25awf:red:wifi"
|
|
|
|
;;
|
2011-07-06 08:05:00 +00:00
|
|
|
v22rw-2x2)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:security"
|
2015-02-16 21:19:18 +00:00
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
vocore-8M|\
|
|
|
|
vocore-16M)
|
|
|
|
status_led="vocore:green:status"
|
|
|
|
;;
|
2017-01-08 06:30:10 +00:00
|
|
|
vocore2)
|
|
|
|
status_led="$board:fuchsia:status"
|
|
|
|
;;
|
2017-08-03 20:09:06 +00:00
|
|
|
vocore2lite)
|
|
|
|
status_led="$board:green:status"
|
|
|
|
;;
|
2015-12-11 15:03:50 +00:00
|
|
|
w306r-v20|\
|
2015-12-11 15:04:13 +00:00
|
|
|
witi|\
|
2015-12-11 15:03:50 +00:00
|
|
|
zbt-wr8305rt)
|
|
|
|
status_led="$board:green:sys"
|
|
|
|
;;
|
2017-01-28 16:05:56 +00:00
|
|
|
wcr-1166ds|\
|
|
|
|
whr-300hp2|\
|
|
|
|
wsr-1166|\
|
|
|
|
wsr-600)
|
|
|
|
status_led="$board:green:power"
|
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
wcr-150gn|\
|
2011-12-23 14:27:16 +00:00
|
|
|
wl-351)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:amber:power"
|
2015-08-17 06:24:34 +00:00
|
|
|
;;
|
2015-08-17 06:24:47 +00:00
|
|
|
whr-g300n|\
|
2017-03-15 08:37:05 +00:00
|
|
|
wlr-6000|\
|
|
|
|
zbt-we2026)
|
2016-08-14 21:30:44 +00:00
|
|
|
status_led="$board:red:power"
|
|
|
|
;;
|
2015-08-17 06:24:34 +00:00
|
|
|
wzr-agl300nh)
|
2015-08-17 06:24:47 +00:00
|
|
|
status_led="$board:green:router"
|
2014-02-18 13:33:25 +00:00
|
|
|
;;
|
2015-09-14 20:09:31 +00:00
|
|
|
wizfi630a)
|
|
|
|
status_led="$board::run"
|
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
wr512-3gn-4M|\
|
|
|
|
wr512-3gn-8M)
|
|
|
|
status_led="wr512-3gn:green:wps"
|
|
|
|
;;
|
2016-01-01 21:19:50 +00:00
|
|
|
wrtnode2r | \
|
|
|
|
wrtnode2p | \
|
|
|
|
wrtnode)
|
|
|
|
status_led="wrtnode:blue:indicator"
|
|
|
|
;;
|
2017-04-07 22:34:48 +00:00
|
|
|
wt3020-4M|\
|
|
|
|
wt3020-8M)
|
|
|
|
status_led="wt3020:blue:power"
|
|
|
|
;;
|
2016-09-25 19:09:31 +00:00
|
|
|
zbt-cpe102)
|
|
|
|
status_led="$board:green:4g-0"
|
|
|
|
;;
|
2017-04-12 05:53:56 +00:00
|
|
|
zbt-we826-16M|\
|
|
|
|
zbt-we826-32M)
|
2017-04-12 05:56:40 +00:00
|
|
|
status_led="zbt-we826:green:power"
|
2017-04-12 05:53:56 +00:00
|
|
|
;;
|
2017-04-01 08:46:44 +00:00
|
|
|
zbt-wg3526-16M|\
|
|
|
|
zbt-wg3526-32M)
|
2017-04-07 21:52:27 +00:00
|
|
|
status_led="zbt-wg3526:green:status"
|
|
|
|
;;
|
2011-03-27 19:19:40 +00:00
|
|
|
esac
|
2010-04-11 17:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set_state() {
|
2015-11-03 13:32:02 +00:00
|
|
|
get_status_led $1
|
2010-04-11 17:47:23 +00:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
preinit)
|
2013-02-18 09:56:29 +00:00
|
|
|
status_led_blink_preinit
|
2010-04-11 17:47:23 +00:00
|
|
|
;;
|
|
|
|
failsafe)
|
2013-02-18 09:56:29 +00:00
|
|
|
status_led_blink_failsafe
|
2010-04-11 17:47:23 +00:00
|
|
|
;;
|
2015-11-03 13:32:02 +00:00
|
|
|
upgrade | \
|
2014-12-15 10:37:00 +00:00
|
|
|
preinit_regular)
|
|
|
|
status_led_blink_preinit_regular
|
|
|
|
;;
|
2010-04-11 17:47:23 +00:00
|
|
|
done)
|
|
|
|
status_led_on
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|