aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rc.sysinit
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-xrc.d/rc.sysinit20
1 files changed, 20 insertions, 0 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 23ac3a98..38eb858c 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -63,6 +63,26 @@ if [ -x /sbin/quotaon ]; then
/sbin/quotaon /
fi
+# check for arguments
+
+mount -t proc /proc /proc
+if grep -i nopnp /proc/cmdline >/dev/null ; then
+ PNP=
+else
+ PNP=yes
+fi
+umount /proc
+
+# set up pnp
+if [ -x /sbin/isapnp -a -f /etc/isapnp.conf ]; then
+ if [ -n "$PNP" ]; then
+ echo "Setting up ISA PNP devices"
+ /sbin/isapnp /etc/isapnp.conf
+ else
+ echo "Skipping ISA PNP configuration at users request"
+ fi
+fi
+
# Remount the root filesystem read-write.
echo "Remounting root filesystem in read-write mode."
mount -n -o remount,rw /