summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/hotplug.d/net/10-net
blob: d5b7f6b0fadf2d5f5c0bdcee594cc8d1f0c2bc13 (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
# Copyright (C) 2006 OpenWrt.org

include network

addif() {
	scan_interfaces
	setup_interface "$INTERFACE"
	
	# find all vlan configurations for this interface and set them up as well
	for ifc in $interfaces; do
		config_get type "$ifc" type
		case "$type" in
			bridge) config_get ifs "$ifc" ifnames;;
			*) config_get ifs "$ifc" ifname;;
		esac
		for dev in $ifs; do
			[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
				add_vlan "$dev"
			}
		done
	done
}

case "$ACTION" in
	add|register)
		addif
	;;
esac