feeds.conf.default: add new targets feed
[openwrt/staging/chunkeey.git] / target / linux / mpc83xx / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2012 OpenWrt.org
4 #
5
6 [ -e /etc/config/network ] && exit 0
7
8 touch /etc/config/network
9
10 . /lib/functions/uci-defaults.sh
11 . /lib/mpc83xx.sh
12
13 ucidef_set_interface_loopback
14
15 board=$(mpc83xx_board_name)
16
17 case "$board" in
18 rb333)
19 ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
20 ;;
21
22 *)
23 ucidef_set_interfaces_lan_wan "eth0" "eth1"
24 ;;
25 esac
26
27 uci commit network
28
29 exit 0