contrib/rc_nobash/rc.dev
2006-11-13 21:12:21 +01:00

16 lines
375 B
Plaintext

#
# This rc file takes all steps required to mount /dev
#
# Mount sysfs, don't write to mtab if / was not properly umounted.
if ! /bin/mount -t sysfs none /sys; then
/bin/mount -n -t sysfs none /sys
fi
# Mount procfs, don't write to mtab if / was not properly umounted.
if ! /bin/mount -t proc none /proc; then
/bin/mount -n -t proc none /proc
fi
/sbin/start_udev