1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 20:09:55 +02:00

[backfire] merge r20683

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@21113 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-04-23 15:32:22 +00:00
parent a1ed470f78
commit 26fa802708
2 changed files with 5 additions and 16 deletions

View File

@ -45,8 +45,8 @@ DEVPATH is set {
makedev /dev/%DEVICENAME% 0644
}
FIRMWARE is set {
FIRMWARE is set, ACTION == add {
nothrottle
exec /sbin/hotplug-call firmware
load-firmware /lib/firmware
next
}

View File

@ -1,19 +1,8 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2010 OpenWrt.org
export HOTPLUG_TYPE="$1"
# bypass the normal hotplug path for firmware loading
# would otherwise cause problems with drivers like bcm43xx
[ -d /sys/firmware -a "firmware" = "$HOTPLUG_TYPE" -a "add" = "$ACTION" ] && {
[ -f "/lib/firmware/$FIRMWARE" ] && {
echo 1 > "/sys$DEVPATH/loading"
dd if="/lib/firmware/$FIRMWARE" of="/sys$DEVPATH/data" bs=64k
echo 0 > "/sys$DEVPATH/loading"
} || echo -1 > "/sys$DEVPATH/loading"
exit 0
}
. /etc/functions.sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin