dff24c040a89448b64920798aa6e8f5e2c8f4a81
[openwrt-github/.git] / target / linux / mpc85xx / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 # Copyright (C) 2014-2015 OpenWrt.org
3
4 . /lib/functions/uci-defaults-new.sh
5 . /lib/mpc85xx.sh
6 . /lib/functions.sh
7 . /lib/functions/system.sh
8
9 board_config_update
10
11 ucidef_set_interface_loopback
12
13 board=$(mpc85xx_board_name)
14
15 case "$board" in
16 tl-wdr4900-v1)
17         ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
18         ucidef_add_switch "switch0" "1" "1"
19         ucidef_add_switch_vlan "switch0" "1" "0t 2 3 4 5"
20         ucidef_add_switch_vlan "switch0" "2" "0t 1"
21         ;;
22 *)
23         ucidef_set_interfaces_lan_wan "eth0" "eth1"
24         ;;
25 esac
26
27 board_config_flush
28
29 exit 0