43 lines
584 B
Text
43 lines
584 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2012 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
[ -e /etc/config/network ] && exit 0
|
||
|
|
||
|
touch /etc/config/network
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
. /lib/brcm63xx.sh
|
||
|
|
||
|
ucidef_set_interface_loopback
|
||
|
|
||
|
case "$board_name" in
|
||
|
|
||
|
96348A-122 |\
|
||
|
96358-502V |\
|
||
|
AW4139 |\
|
||
|
CPVA642 |\
|
||
|
CT536_CT5621 |\
|
||
|
D-4P-W |\
|
||
|
SPW500V |\
|
||
|
V2110)
|
||
|
ucidef_set_interface_lan "eth0"
|
||
|
;;
|
||
|
|
||
|
DVG3810BN)
|
||
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
|
||
|
ucidef_add_switch "eth1" "1" "1"
|
||
|
ucidef_add_switch_vlan "eth1" "1" "0 1 2 3 4 5t"
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||
|
;;
|
||
|
|
||
|
esac
|
||
|
|
||
|
uci commit network
|
||
|
|
||
|
exit 0
|