mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] broadcom-wl:
- fix compilation against eglibc and glibc (#7521) - unbind device from b43 ssb bridge on boot (#7529) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22007 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
23
package/broadcom-wl/files/etc/init.d/wlunbind
Executable file
23
package/broadcom-wl/files/etc/init.d/wlunbind
Executable file
@@ -0,0 +1,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() { :; }
|
||||
Reference in New Issue
Block a user