ipq806x: add support for Netgear Nighthawk X4 R7500
[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 r7500)
21 ucidef_set_interfaces_lan_wan "eth1" "eth0"
22 ucidef_add_switch "switch0" "1" "1"
23 ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
24 ucidef_add_switch_vlan "switch0" "2" "0 5"
25 ;;
26 db149)
27 ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "eth0"
28 ucidef_add_switch "switch0" "1" "1"
29 ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
30 ucidef_add_switch_vlan "switch0" "2" "0 5"
31 ;;
32 *)
33 echo "Unsupported hardware. Network interfaces not intialized"
34 ;;
35 esac
36
37 uci commit network
38
39 exit 0