summaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/files/etc/init.d/wlunbind
blob: 80a8f0e604d25122ec1b3abfba561712911da177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh /etc/rc.common
# Copyright (C) 2010 OpenWrt.org

START=09

boot() {
	local sysfs=/sys/bus/pci/drivers/b43-pci-bridge
	if [ -d "$sysfs" ]; then
		local lnk
		for lnk in $sysfs/*; do
			[ -h "$lnk" ] || continue
			case "${lnk##*/}" in
				*:*:*.*)
					logger "Unbinding WL PCI device ${lnk##*/} from B43 SSB bridge"
					echo -n "${lnk##*/}" > "$sysfs/unbind"
				;;
			esac
		done
	fi
}

start() { :; }
stop() { :; }