e6e024f155
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 41274
32 lines
466 B
Bash
32 lines
466 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
. /lib/functions/octeon.sh
|
|
|
|
touch /etc/config/network
|
|
|
|
board=$(octeon_board_name)
|
|
|
|
case "$board" in
|
|
erlite)
|
|
ucidef_set_interface_loopback
|
|
ucidef_set_interface_lan 'eth0'
|
|
ucidef_set_interface_wan 'eth1'
|
|
;;
|
|
|
|
*)
|
|
ucidef_set_interface_loopback
|
|
ucidef_set_interface_wan 'eth1'
|
|
ucidef_set_interface_lan 'eth0'
|
|
;;
|
|
esac
|
|
|
|
uci commit network
|
|
|
|
exit 0
|