2010-05-30 09:32:47 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
board_name=""
|
|
|
|
status_led=""
|
|
|
|
status_led2=""
|
|
|
|
sys_mtd_part=""
|
|
|
|
brcm63xx_has_reset_button=""
|
2013-02-06 06:25:30 +08:00
|
|
|
ifname=""
|
2010-05-30 09:32:47 +08:00
|
|
|
|
|
|
|
brcm63xx_detect() {
|
2012-05-27 21:22:08 +08:00
|
|
|
board_name=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
2010-05-30 09:32:47 +08:00
|
|
|
|
2013-01-23 18:12:40 +08:00
|
|
|
if [ "$board_name" = "96358VW" ] && [ -n "$(swconfig dev eth1 help 2>/dev/null)" ]; then
|
2012-05-27 21:22:11 +08:00
|
|
|
board_name="DVAG3810BN"
|
|
|
|
fi
|
|
|
|
|
2010-05-30 09:32:47 +08:00
|
|
|
case "$board_name" in
|
2014-07-12 20:31:45 +08:00
|
|
|
963281TAN)
|
|
|
|
status_led="963281TAN::power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
|
|
|
963281T_TEF)
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
status_led="A4001N1:green:power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-30 18:27:46 +08:00
|
|
|
96328avng)
|
|
|
|
status_led="96328avng::power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-10-23 18:57:47 +08:00
|
|
|
96328A-1241N)
|
|
|
|
brcm63xx_has_reset_button="true"
|
2014-07-12 20:31:35 +08:00
|
|
|
status_led="AR-5381u:green:power"
|
2012-10-23 18:57:47 +08:00
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
96328A-1441N1)
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
status_led="AR-5387un:green:power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
|
|
|
96348GW)
|
|
|
|
status_led="96348GW:green:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
|
|
|
96348GW-11)
|
|
|
|
status_led="96348GW-11:green:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
|
|
|
96358-502V)
|
|
|
|
status_led="spw303v:green:power+adsl"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-28 01:44:45 +08:00
|
|
|
96368M-1541N)
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
status_led="VR-3025u:green:power"
|
|
|
|
ifname="eth0"
|
|
|
|
;;
|
2014-06-30 21:34:34 +08:00
|
|
|
96369R-1231N)
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
status_led="WAP-5813n:green:power"
|
|
|
|
ifname="eth0"
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
AR1004G)
|
|
|
|
status_led="AR1004G:green:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
;;
|
|
|
|
AW4139 |\
|
|
|
|
AW4339U)
|
|
|
|
status_led="dsl-274xb:green:power"
|
2013-02-05 22:57:43 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
CPVA642)
|
|
|
|
status_led="CPVA642:green:power:"
|
2013-02-05 22:57:43 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
CT536_CT5621)
|
|
|
|
status_led="CT536_CT5621:green:power"
|
2012-10-23 18:57:44 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
CVG834G_E15R3921)
|
|
|
|
status_led="CVG834G:green:power"
|
2012-05-30 18:27:46 +08:00
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
D-4P-W)
|
|
|
|
status_led="D-4P-W:green:power"
|
2012-10-23 18:57:39 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
"F@ST2504n")
|
|
|
|
status_led="fast2504n:green:ok"
|
2010-05-30 09:32:47 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
2014-07-12 20:31:45 +08:00
|
|
|
ifname=eth0
|
2010-05-30 09:32:47 +08:00
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
'F@ST2704V2')
|
|
|
|
status_led="F@ST2704V2:green:power"
|
2014-02-22 19:16:38 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
2013-06-07 06:22:20 +08:00
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 21:22:08 +08:00
|
|
|
GW6000)
|
2010-12-07 23:15:54 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2012-05-27 21:22:08 +08:00
|
|
|
GW6200)
|
2013-03-04 21:42:35 +08:00
|
|
|
status_led="GW6200:green:line1"
|
|
|
|
status_led2="GW6200:green:tel"
|
2010-12-07 23:15:54 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2014-07-12 20:31:39 +08:00
|
|
|
HW553)
|
|
|
|
status_led="HW553:blue:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2013-01-04 22:47:57 +08:00
|
|
|
HW556*)
|
|
|
|
status_led="HW556:red:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
NB6)
|
2010-12-11 02:59:58 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
RTA770BW)
|
2010-11-29 06:04:36 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
2014-07-12 20:31:45 +08:00
|
|
|
status_led="RTA770BW:green:diag"
|
2010-11-29 06:04:36 +08:00
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
RTA770W)
|
2011-05-11 21:33:50 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
2014-07-12 20:31:45 +08:00
|
|
|
status_led="RTA770W:green:diag"
|
2011-05-11 21:33:50 +08:00
|
|
|
ifname=eth0
|
|
|
|
;;
|
2014-07-12 20:31:45 +08:00
|
|
|
SPW500V)
|
|
|
|
status_led="SPW500V:green:power"
|
2011-05-11 21:34:14 +08:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 21:22:08 +08:00
|
|
|
V2110)
|
2011-05-20 18:06:25 +08:00
|
|
|
status_led="V2110:power:green"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2010-05-30 09:32:47 +08:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
brcm63xx_detect
|