1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 21:37:37 +03:00
openwrt-xburst/package/broadcom-wl/files/etc/init.d/wlunbind

24 lines
428 B
Plaintext
Raw Normal View History

#!/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() { :; }