summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/hotplug.d/net/10-net
blob: 8661a2851da565ed4f9ec875cbd469008238f9a8 (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
# 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 iftype "$ifc" type
		config_get ifs "$ifc" ifname
		for dev in $ifs; do
			[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
				add_vlan "$dev"
			}
		done
	done
}

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