X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Fbase-files%2Ffiles%2Fsbin%2Fhotplug-call;h=c5a76a76c134065ec4e1e344517de03b716f79f7;hb=f5cd7301170228f13a30444dd8013eee58d3a4b1;hp=57011d1523b589c6eeb3731fdc03731816bfaa74;hpb=e6477dde693f8ea0fc7b616bae18598d182b2de4;p=openwrt-10.03%2F.git diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 57011d152..c5a76a76c 100755 --- a/package/base-files/files/sbin/hotplug-call +++ b/package/base-files/files/sbin/hotplug-call @@ -5,10 +5,10 @@ export HOTPLUG_TYPE="$1" # bypass the normal hotplug path for firmware loading # would otherwise cause problems with drivers like bcm43xx -[ "firmware" = "$HOTPLUG_TYPE" -a "add" = "$ACTION" ] && { +[ -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