1#!/bin/sh
2#
3# Copyright (C) 2012 OpenWrt.org
4#
5
6[ -e /etc/config/network ] && exit 0
7
8touch /etc/config/network
9
10. /lib/functions/uci-defaults.sh
11. /lib/mpc83xx.sh
12
13ucidef_set_interface_loopback
14
15board=$(mpc83xx_board_name)
16
17case "$board" in
18rb333)
19	ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
20	;;
21
22*)
23	ucidef_set_interfaces_lan_wan "eth0" "eth1"
24	;;
25esac
26
27uci commit network
28
29exit 0
30