ipq806x: initialize the network on AP148
[openwrt/openwrt.git] / target / linux / ipq806x / base-files / etc / uci-defaults / network
1 #!/bin/sh
2 #
3 # Copyright (c) 2015 The Linux Foundation. All rights reserved.
4 # Copyright (C) 2011 OpenWrt.org
5 #
6
7 [ -e /etc/config/network ] && exit 0
8
9 touch /etc/config/network
10
11 . /lib/functions/uci-defaults.sh
12 . /lib/ipq806x.sh
13
14 ucidef_set_interface_loopback
15
16 board=$(ipq806x_board_name)
17
18 case "$board" in
19 ap148)
20 ucidef_set_interfaces_lan_wan "eth1" "eth0"
21 ucidef_add_switch "switch0" "1" "1"
22 ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
23 ucidef_add_switch_vlan "switch0" "2" "0 5"
24 ;;
25 *)
26 echo "Unsupported hardware. Network interfaces not intialized"
27 ;;
28 esac
29
30 uci commit network
31
32 exit 0