forked from ports/contrib
16 lines
375 B
Plaintext
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
|