kumquat-buildroot/target/device/valka/target_skeleton/etc/rc.d/00.virtualfs

25 lines
428 B
Plaintext
Raw Normal View History

2008-03-06 19:59:14 +01:00
#!/bin/ash
. /etc/rc.subr
start() {
echo -n " * Mounting virtual filesystems:"
mount_fs proc /proc proc
mount_fs sys /sys sysfs
mount_fs config /config configfs
mount_fs tmp /tmp tmpfs
mount_fs run /var/run tmpfs
mkdir_fs /var/run/lock
if mount_fs dev /dev tmpfs "size=512k,mode=0755"; then
mkdir_fs /dev/pts
mkdir_fs /dev/shm
fi
mount_fs ptr /dev/pts devpts
echo ""
}
stop() {
return 0
}
rc_run_command "$1"