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
|
2011-12-02 06:48:35 +08:00
|
|
|
argus-atp52b | \
|
2011-12-02 06:48:37 +08:00
|
|
|
b2c | \
|
2011-12-02 06:48:43 +08:00
|
|
|
f5d8235-v2 | \
|
2011-12-02 06:48:35 +08:00
|
|
|
nw718)
|
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
|
|
|
|
2011-12-02 06:48:54 +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" "1 2 3 4 5t"
|
|
|
|
ucidef_add_switch_vlan "rtl8366s" "2" "0 5t"
|
|
|
|
;;
|
|
|
|
|
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
|
|
|
|
f5d8235-v2)
|
2011-12-06 01:27:02 +08:00
|
|
|
lan_mac=$(ramips_get_mac_nvram "u-boot" 262148)
|
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
|
|
|
;;
|
|
|
|
|
|
|
|
argus-atp52b | \
|
|
|
|
b2c | \
|
2011-12-02 06:48:54 +08:00
|
|
|
nw718 | \
|
|
|
|
rt-n15)
|
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
|
|
|
|
|
|
|
nbg-419n)
|
|
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
|
|
wan_mac=$(ramips_get_mac_binary factory 40)
|
|
|
|
;;
|
2011-12-02 06:48:43 +08:00
|
|
|
esac
|
2011-12-02 06:48:45 +08:00
|
|
|
|
2011-12-02 06:48:48 +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
|