aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/sbin/hotplug-call
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <b_tsiligiannis@silverton.gr>2010-04-03 18:21:02 +0000
committerVasilis Tsiligiannis <b_tsiligiannis@silverton.gr>2010-04-03 18:21:02 +0000
commit1028ae4370bbcd387103a4a42d93cc7c42a47243 (patch)
tree7caccc72c4bfb1bda9dd4f887197e766b410309e /package/base-files/files/sbin/hotplug-call
parentb6a5e28a76775d7b0f79ed0c868bf008b63c672b (diff)
downloadupstream-1028ae4370bbcd387103a4a42d93cc7c42a47243.tar.gz
upstream-1028ae4370bbcd387103a4a42d93cc7c42a47243.tar.bz2
upstream-1028ae4370bbcd387103a4a42d93cc7c42a47243.zip
[package] base-files: Use hotplug2 to download firmware
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20683 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin/hotplug-call')
-rwxr-xr-xpackage/base-files/files/sbin/hotplug-call13
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