/sbin/hotplug-call: export the hotplug event type through the environment for hotplug...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 31 Mar 2007 00:59:49 +0000 (00:59 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 31 Mar 2007 00:59:49 +0000 (00:59 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6768 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/base-files/files/sbin/hotplug-call
package/base-files/files/sbin/mount_root

index b1b6f97b234820107f24a6e1a8dbcd64d398362b..607ee2e9db8ff666bb2c8b71b909e1f857167e35 100755 (executable)
@@ -1,9 +1,11 @@
 #!/bin/sh
 # Copyright (C) 2006 OpenWrt.org
 
+export HOTPLUG_TYPE="$1"
+
 # bypass the normal hotplug path for firmware loading
 # would otherwise cause problems with drivers like bcm43xx
-[ "$1" = "firmware" -a "$ACTION" = "add" ] && {
+[ "$HOTPLUG_TYPE" = "firmware" -a "$ACTION" = "add" ] && {
        [ -f "/lib/firmware/$FIRMWARE" ] && {
                echo 1 > "/sys$DEVPATH/loading"
                cp "/lib/firmware/$FIRMWARE" "/sys$DEVPATH/data"
index 47babf14f87adc14b85730bd20130b561c58d450..7b89e8f3f69c7115ab0bfc5bdc2dfac79392130b 100755 (executable)
@@ -13,7 +13,7 @@ else
        mknod /dev/console c 5 1
        exec >/dev/console </dev/console 2>&1
        mkdir /dev/shm
-       /sbin/hotplug2 --no-persistent --coldplug
+       /sbin/hotplug2 --no-persistent --coldplug --max-children 3
 fi
 mkdir -p /dev/pts
 mount none /dev/pts -t devpts