ipq806x: fix EA8500 switch configuration
[openwrt/staging/florian.git] / target / linux / ipq806x / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (c) 2015 The Linux Foundation. All rights reserved.
4 # Copyright (c) 2011-2015 OpenWrt.org
5 #
6
7 . /lib/functions/uci-defaults.sh
8 . /lib/ipq806x.sh
9 . /lib/functions/system.sh
10
11 board_config_update
12
13 board=$(ipq806x_board_name)
14
15 case "$board" in
16 ap148 |\
17 c2600 |\
18 d7800 |\
19 r7500 |\
20 r7500v2 |\
21 r7800 |\
22 vr2600v)
23 ucidef_add_switch "switch0" \
24 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
25 ;;
26 db149)
27 ucidef_set_interface_lan "eth1 eth2 eth3"
28 ucidef_add_switch "switch0" \
29 "1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "5:wan" "0u@eth0"
30 ;;
31 ea8500)
32
33 hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
34 ucidef_add_switch "switch0" \
35 "0@eth0" "1:lan" "2:lan" "3:lan" "4:lan" "5:wan"
36 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
37 ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
38 ;;
39 fritz4040)
40 ucidef_set_interfaces_lan_wan "eth0" "eth1"
41 ucidef_add_switch "switch0" \
42 "0@eth0" "1:lan" "2:lan" "3:lan" "4:lan"
43 ;;
44 nbg6817)
45 hw_mac_addr=$(mtd_get_mac_ascii 0:APPSBLENV ethaddr)
46 ucidef_add_switch "switch0" \
47 "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
48 ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
49 ucidef_set_interface_macaddr "wan" "$(macaddr_add $hw_mac_addr 1)"
50 ;;
51 *)
52 echo "Unsupported hardware. Network interfaces not intialized"
53 ;;
54 esac
55
56 board_config_flush
57
58 exit 0