2010-05-30 01:32:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
board_name=""
|
|
|
|
status_led=""
|
|
|
|
status_led2=""
|
|
|
|
sys_mtd_part=""
|
|
|
|
brcm63xx_has_reset_button=""
|
|
|
|
|
|
|
|
brcm63xx_detect() {
|
2012-05-27 13:22:08 +00:00
|
|
|
board_name=$(awk 'BEGIN{FS="[ \t:/]+"} /system type/ {print $4}' /proc/cpuinfo)
|
2010-05-30 01:32:47 +00:00
|
|
|
|
2012-05-27 13:22:11 +00:00
|
|
|
if [ "$board_name" = "96358VW" ] && [ -e /proc/switch/eth1/enable ]; then
|
|
|
|
board_name="DVAG3810BN"
|
|
|
|
fi
|
|
|
|
|
2010-05-30 01:32:47 +00:00
|
|
|
case "$board_name" in
|
2012-05-30 10:27:46 +00:00
|
|
|
96328avng)
|
|
|
|
status_led="96328avng::power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
|
|
|
963281TAN)
|
|
|
|
status_led="963281TAN::power"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
96348GW)
|
2010-12-07 15:15:41 +00:00
|
|
|
status_led="power"
|
2010-05-30 01:32:47 +00:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
GW6000)
|
2010-12-07 15:15:54 +00:00
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
GW6200)
|
2010-12-07 15:15:54 +00:00
|
|
|
status_led="line1"
|
|
|
|
status_led2="tel"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
96348GW-11)
|
2010-08-02 19:32:59 +00:00
|
|
|
status_led="power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth1
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
CT536_CT5621)
|
2010-12-10 18:59:58 +00:00
|
|
|
status_led="power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
SPW500V)
|
2010-11-28 22:04:36 +00:00
|
|
|
status_led="power:green"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:43 +00:00
|
|
|
AW4139 |\
|
|
|
|
AW4339U)
|
2011-05-11 13:33:50 +00:00
|
|
|
status_led="dsl-274xb:green:power"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
96358-502V)
|
2011-05-11 13:34:14 +00:00
|
|
|
status_led="spw303v:green:power+adsl"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
V2110)
|
2011-05-20 10:06:25 +00:00
|
|
|
status_led="V2110:power:green"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
CPVA642)
|
2010-12-06 06:46:03 +00:00
|
|
|
status_led="power:green"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-05-27 13:22:08 +00:00
|
|
|
D-4P-W)
|
2011-05-20 10:06:22 +00:00
|
|
|
status_led="power:green"
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2012-07-31 14:27:47 +00:00
|
|
|
NB6)
|
|
|
|
brcm63xx_has_reset_button="true"
|
|
|
|
ifname=eth0
|
|
|
|
;;
|
2010-05-30 01:32:47 +00:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
brcm63xx_detect
|