aboutsummaryrefslogtreecommitdiff
path: root/target/linux/ipq40xx/base-files/etc/board.d/02_network
blob: 9c232d49f792455d070b156a4cb1b24ab8ece0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
#
# Copyright (c) 2015 The Linux Foundation. All rights reserved.
# Copyright (c) 2011-2015 OpenWrt.org
#

. /lib/functions/uci-defaults.sh
. /lib/functions/system.sh

ipq40xx_setup_interfaces()
{
	local board="$1"

	case "$board" in
	8dev,jalapeno|\
	alfa-network,ap120c-ac)
		ucidef_set_interfaces_lan_wan "eth0" "eth1"
		;;
	asus,map-ac2200|\
	openmesh,a42|\
	openmesh,a62)
		ucidef_set_interfaces_lan_wan "eth1" "eth0"
		;;
	asus,rt-ac58u|\
	zyxel,nbg6617)
		ucidef_set_interfaces_lan_wan "eth0" "eth1"
		ucidef_add_switch "switch0" \
			"0u@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1"
		;;
	avm,fritzbox-4040|\
	linksys,ea6350v3)
		ucidef_set_interfaces_lan_wan "eth0" "eth1"
		ucidef_add_switch "switch0" \
			"0u@eth0" "1:lan" "2:lan" "3:lan" "4:lan"
		;;
	avm,fritzbox-7530)
		ucidef_add_switch "switch0" \
			"0u@eth0" "1:lan" "2:lan" "3:lan" "4:lan"
		;;
	compex,wpj428)
		ucidef_set_interface_lan "eth0 eth1"
		;;
	engenius,eap1300|\
	meraki,mr33|\
	netgear,ex6100v2|\
	netgear,ex6150v2|\
	zyxel,wre6606)
		ucidef_set_interface_lan "eth0"
		;;
	glinet,gl-b1300)
		ucidef_set_interfaces_lan_wan "eth0" "eth1"
		ucidef_add_switch "switch0" \
			"0u@eth0" "3:lan" "4:lan"
		;;
	qxwlan,e2600ac-c1 |\
	qxwlan,e2600ac-c2)
		ucidef_set_interfaces_lan_wan "eth0" "eth1"
		ucidef_add_switch "switch0" \
			"0u@eth0" "3:lan" "4:lan" "0u@eth1" "5:wan"
		;;
	*)
		echo "Unsupported hardware. Network interfaces not initialized"
		;;
	esac
}

ipq40xx_setup_macs()
{
	local board="$1"

	case "$board" in
	asus,rt-ac58u)
		CI_UBIPART=UBI_DEV
		wan_mac=$(mtd_get_mac_binary_ubi Factory 20486)
		lan_mac=$(mtd_get_mac_binary_ubi Factory 4102)
		;;
	linksys,ea6350v3)
		wan_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
		lan_mac=$(macaddr_add "$wan_mac" 1)
		;;
	esac

        [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
        [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
}

board_config_update
board=$(board_name)
ipq40xx_setup_interfaces $board
ipq40xx_setup_macs $board
board_config_flush

exit 0