summaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-12-08 20:04:38 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-12-08 20:04:38 +0000
commit4ab57b9e0f21dbeb673d36e666157e1e4e5c6631 (patch)
treeffaca24c5ed339eeb918744b58a1f05156dab2f6 /package/base-files
parentcc5994a4528f00e8221ea893679ea3001d39aada (diff)
downloadmaster-31e0f0ae-4ab57b9e0f21dbeb673d36e666157e1e4e5c6631.tar.gz
master-31e0f0ae-4ab57b9e0f21dbeb673d36e666157e1e4e5c6631.tar.bz2
master-31e0f0ae-4ab57b9e0f21dbeb673d36e666157e1e4e5c6631.zip
fix firmware loading broken by the busybox upgrade
SVN-Revision: 18705
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/sbin/hotplug-call2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call
index e2f7e36177..c5a76a76c1 100755
--- a/package/base-files/files/sbin/hotplug-call
+++ b/package/base-files/files/sbin/hotplug-call
@@ -8,7 +8,7 @@ export HOTPLUG_TYPE="$1"
[ -d /sys/firmware -a "firmware" = "$HOTPLUG_TYPE" -a "add" = "$ACTION" ] && {
[ -f "/lib/firmware/$FIRMWARE" ] && {
echo 1 > "/sys$DEVPATH/loading"
- cp "/lib/firmware/$FIRMWARE" "/sys$DEVPATH/data"
+ dd if="/lib/firmware/$FIRMWARE" of="/sys$DEVPATH/data" bs=64k
echo 0 > "/sys$DEVPATH/loading"
}
exit 0