diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2010-04-03 18:21:02 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2010-04-03 18:21:02 +0000 |
commit | a1e4c66c1630e77f2961601fe8322a3aff67d58c (patch) | |
tree | 401dee3cd15b5d006d8c1d038ca67e2ae7654ed5 /package/base-files/files/sbin/hotplug-call | |
parent | 2cdfbaa86cd647befa8f2d59b93bbf12144b744d (diff) | |
download | upstream-a1e4c66c1630e77f2961601fe8322a3aff67d58c.tar.gz upstream-a1e4c66c1630e77f2961601fe8322a3aff67d58c.tar.bz2 upstream-a1e4c66c1630e77f2961601fe8322a3aff67d58c.zip |
base-files: Use hotplug2 to download firmware
SVN-Revision: 20683
Diffstat (limited to 'package/base-files/files/sbin/hotplug-call')
-rwxr-xr-x | package/base-files/files/sbin/hotplug-call | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index e56460de93..0d96e80aaf 100755 --- a/package/base-files/files/sbin/hotplug-call +++ b/package/base-files/files/sbin/hotplug-call @@ -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 |