aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-04-23 14:28:13 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-04-23 14:28:13 +0000
commit7232fe9150c2ab15cfcfc68eea837255e3be61fd (patch)
treeca22bad503b3f3f4675174ce00498daaa22751c3 /package/base-files
parent8b011c593d1db6f7c361753acab3134653c21351 (diff)
downloadupstream-7232fe9150c2ab15cfcfc68eea837255e3be61fd.tar.gz
upstream-7232fe9150c2ab15cfcfc68eea837255e3be61fd.tar.bz2
upstream-7232fe9150c2ab15cfcfc68eea837255e3be61fd.zip
use the right hotplug2 invocation for initramfs
SVN-Revision: 10928
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/etc/preinit8
1 files changed, 6 insertions, 2 deletions
diff --git a/package/base-files/files/etc/preinit b/package/base-files/files/etc/preinit
index 524b4252a2..f7ac0a5a3b 100755
--- a/package/base-files/files/etc/preinit
+++ b/package/base-files/files/etc/preinit
@@ -32,8 +32,12 @@ if grep devfs /proc/filesystems > /dev/null; then
elif [ -x /sbin/hotplug2 ]; then
mount -t tmpfs tmpfs /dev -o size=512K
mknod /dev/console c 5 1
- /sbin/hotplug2 --coldplug --set-rules-file /etc/hotplug2-init.rules
- /sbin/hotplug2 --no-coldplug --persistent --set-rules-file /etc/hotplug2-init.rules &
+ if [ -n "$INITRAMFS" ]; then
+ /sbin/hotplug2 --coldplug --no-persistent --max_children 1 &
+ else
+ /sbin/hotplug2 --coldplug --set-rules-file /etc/hotplug2-init.rules
+ /sbin/hotplug2 --no-coldplug --persistent --set-rules-file /etc/hotplug2-init.rules &
+ fi
M0=/dev/ptmx
M1=/dev/ptmx
HOTPLUG=