2009-10-24 00:51:51 +08:00
|
|
|
#!/bin/sh
|
2011-12-02 06:48:35 +08:00
|
|
|
|
|
|
|
. /etc/functions.sh
|
|
|
|
. /lib/ramips.sh
|
2011-12-02 06:48:48 +08:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2011-12-02 06:48:35 +08:00
|
|
|
|
|
|
|
if [ ! -x /usr/sbin/maccalc ]; then
|
|
|
|
echo "$0: maccalc not found!"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
ramips_setup_interfaces()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-02 06:48:35 +08:00
|
|
|
|
2011-12-02 06:48:48 +08:00
|
|
|
ucidef_set_interface_loopback
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
case $board in
|
2012-01-24 19:48:47 +08:00
|
|
|
all0256n)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:35 +08:00
|
|
|
argus-atp52b | \
|
2011-12-02 06:48:37 +08:00
|
|
|
b2c | \
|
2011-12-28 16:43:32 +08:00
|
|
|
nw718 | \
|
2012-02-20 00:44:49 +08:00
|
|
|
sl-r7205 | \
|
2012-02-11 23:11:36 +08:00
|
|
|
w502u | \
|
|
|
|
wr6202)
|
2011-12-06 00:54:48 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2011-12-02 06:48:35 +08:00
|
|
|
;;
|
2011-12-02 06:48:43 +08:00
|
|
|
|
2012-02-23 03:46:15 +08:00
|
|
|
f5d8235-v1)
|
2012-01-23 18:23:32 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "rtl8366s" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t"
|
|
|
|
ucidef_add_switch_vlan "rtl8366s" "2" "0 5t"
|
|
|
|
;;
|
|
|
|
|
2012-02-11 23:31:18 +08:00
|
|
|
f5d8235-v2)
|
2011-12-23 22:27:16 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "rtl8366rb" "1" "1"
|
2012-02-11 23:31:18 +08:00
|
|
|
ucidef_add_switch_vlan "rtl8366rb" "1" "1 2 3 4 5t"
|
|
|
|
ucidef_add_switch_vlan "rtl8366rb" "2" "0 5t"
|
2011-12-23 22:27:16 +08:00
|
|
|
;;
|
|
|
|
|
2012-02-23 03:46:15 +08:00
|
|
|
rt-n15)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "rtl8366s" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "rtl8366s" "1" "0 1 2 3 5t"
|
|
|
|
ucidef_add_switch_vlan "rtl8366s" "2" "4 5t"
|
|
|
|
;;
|
|
|
|
|
2012-02-13 23:18:04 +08:00
|
|
|
rt-n56u)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 8t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 8t"
|
|
|
|
;;
|
|
|
|
|
2012-02-16 05:13:11 +08:00
|
|
|
v11st-fe)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 5t"
|
|
|
|
;;
|
|
|
|
|
2012-01-23 18:23:32 +08:00
|
|
|
wcr-150gn)
|
|
|
|
ucidef_set_interface_lan_wan "eth0.2" "eth0.1"
|
2011-12-28 00:56:30 +08:00
|
|
|
;;
|
|
|
|
|
2012-02-11 23:31:18 +08:00
|
|
|
wl-351)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "rtl8366rb" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "rtl8366rb" "1" "0 1 2 3 5t"
|
|
|
|
ucidef_add_switch_vlan "rtl8366rb" "2" "4 5t"
|
|
|
|
;;
|
|
|
|
|
2012-01-23 18:23:32 +08:00
|
|
|
wli-tx4-ag300n)
|
|
|
|
ucidef_set_interface_lan "eth0"
|
2011-12-02 06:48:54 +08:00
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:35 +08:00
|
|
|
*)
|
|
|
|
RT3X5X=`cat /proc/cpuinfo | grep RT3.5`
|
2011-12-02 06:48:51 +08:00
|
|
|
if [ -n "${RT3X5X}" ]; then
|
2011-12-06 00:54:48 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2011-12-02 06:48:51 +08:00
|
|
|
else
|
2011-12-06 00:54:48 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
2011-12-02 06:48:51 +08:00
|
|
|
fi
|
2011-12-02 06:48:35 +08:00
|
|
|
;;
|
2011-12-02 06:48:43 +08:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
ramips_setup_macs()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-02 06:48:45 +08:00
|
|
|
local lan_mac=""
|
|
|
|
local wan_mac=""
|
2011-12-02 06:48:43 +08:00
|
|
|
|
|
|
|
case $board in
|
2012-01-24 19:48:47 +08:00
|
|
|
all0256n)
|
|
|
|
lan_mac=$(ramips_get_mac_binary factory 40)
|
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
argus-atp52b | \
|
|
|
|
b2c | \
|
2011-12-28 16:43:43 +08:00
|
|
|
f5d8235-v1 | \
|
2011-12-02 06:48:54 +08:00
|
|
|
nw718 | \
|
2011-12-23 22:27:16 +08:00
|
|
|
rt-n15 | \
|
2012-02-20 00:44:49 +08:00
|
|
|
sl-r7205 | \
|
2011-12-23 22:27:16 +08:00
|
|
|
wl-351)
|
2011-12-06 01:27:02 +08:00
|
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
2011-12-02 06:48:45 +08:00
|
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
2011-12-02 06:48:43 +08:00
|
|
|
;;
|
2011-12-06 01:27:07 +08:00
|
|
|
|
2011-12-07 04:06:08 +08:00
|
|
|
dir-300-b1 |\
|
|
|
|
dir-300-b2 |\
|
|
|
|
dir-600-b1)
|
|
|
|
lan_mac=$(ramips_get_mac_binary devdata 16388)
|
|
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
|
|
;;
|
|
|
|
|
2011-12-23 22:27:10 +08:00
|
|
|
esr-9753 | \
|
2012-02-11 23:11:34 +08:00
|
|
|
nbg-419n | \
|
|
|
|
wcr-150gn)
|
2011-12-06 01:27:07 +08:00
|
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
|
|
wan_mac=$(ramips_get_mac_binary factory 40)
|
|
|
|
;;
|
2011-12-28 00:56:30 +08:00
|
|
|
|
2012-01-23 18:23:32 +08:00
|
|
|
f5d8235-v2)
|
|
|
|
lan_mac=$(ramips_get_mac_binary "u-boot" 262148)
|
|
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
|
|
;;
|
|
|
|
|
2012-02-13 23:18:04 +08:00
|
|
|
rt-n56u)
|
|
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
|
|
wan_mac=$(ramips_get_mac_binary factory 32772)
|
|
|
|
;;
|
|
|
|
|
2011-12-28 16:43:32 +08:00
|
|
|
w502u)
|
|
|
|
lan_mac=$(ramips_get_mac_binary factory 40)
|
|
|
|
wan_mac=$(ramips_get_mac_binary factory 46)
|
|
|
|
;;
|
|
|
|
|
2012-01-26 18:44:23 +08:00
|
|
|
wl341v3)
|
|
|
|
lan_mac=$(ramips_get_mac_binary board-nvram 65440)
|
|
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
|
|
;;
|
|
|
|
|
2011-12-28 00:56:30 +08:00
|
|
|
wli-tx4-ag300n)
|
|
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
esac
|
2011-12-02 06:48:45 +08:00
|
|
|
|
2012-01-23 18:23:32 +08:00
|
|
|
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
|
|
|
|
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
|
2011-12-02 06:48:43 +08:00
|
|
|
}
|
|
|
|
|
2011-12-02 06:48:51 +08:00
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/network
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
board=$(ramips_board_name)
|
|
|
|
|
|
|
|
ramips_setup_interfaces $board
|
|
|
|
ramips_setup_macs $board
|
2011-12-02 06:48:48 +08:00
|
|
|
|
|
|
|
uci commit network
|
|
|
|
|
|
|
|
exit 0
|