diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-02-06 00:25:26 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-06 00:25:26 +0000 |
commit | 669db9e0db18fb3f151116e2268a46017661cf7c (patch) | |
tree | 967952480cfacf9bb174fb9f8a032465ab6e8096 /packages/initscripts/initscripts-1.0/slugos/mountall.sh | |
parent | 8b1cc22759301dfcbb1c31d4c23562069b2b0d26 (diff) |
initscripts: Update SlugOS initscripts
Update checkroot to include led status/beep on error, mount swap
Update checkroot, move $rootcheck to $ROOTFSCK in rcS
Update mountall, remove the swap mount, since it's already mounted
Diffstat (limited to 'packages/initscripts/initscripts-1.0/slugos/mountall.sh')
-rw-r--r-- | packages/initscripts/initscripts-1.0/slugos/mountall.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/initscripts/initscripts-1.0/slugos/mountall.sh b/packages/initscripts/initscripts-1.0/slugos/mountall.sh new file mode 100644 index 0000000000..94ea8217fd --- /dev/null +++ b/packages/initscripts/initscripts-1.0/slugos/mountall.sh @@ -0,0 +1,27 @@ +# +# mountall.sh Mount all filesystems. +# +# Version: @(#)mountall.sh 2.83-2 01-Nov-2001 miquels@cistron.nl +# +. /etc/default/rcS + +# +# Mount local filesystems in /etc/fstab. For some reason, people +# might want to mount "proc" several times, and mount -v complains +# about this. So we mount "proc" filesystems without -v. +# +test "$VERBOSE" != no && echo "Mounting local filesystems..." +mount -at nonfs,nosmbfs,noncpfs 2>/dev/null + +# +# We might have mounted something over /dev, see if /dev/initctl is there. +# +if test ! -p /dev/initctl +then + rm -f /dev/initctl + mknod -m 600 /dev/initctl p +fi +kill -USR1 1 + +: exit 0 + |