mountproc: mount /dev,/run,/dev/pts,/dev/shm if not already mounted
This commit is contained in:
parent
79c2f0913b
commit
fe6ca9f9f9
@ -29,3 +29,19 @@ if [ ! -e /sys/kernel ]; then
|
||||
evaluate_retval
|
||||
echo
|
||||
fi
|
||||
if [ ! "`grep ' /dev ' /proc/mounts`" ]; then
|
||||
[ "`grep devtmpfs /proc/filesystems`" ] && \
|
||||
mount -n -t devtmpfs udev /dev || \
|
||||
mount -n -t tmpfs udev /dev
|
||||
fi
|
||||
if [ ! "`grep ' /run ' /proc/mounts`" ]; then
|
||||
mount -n -t tmpfs tmpfs /run
|
||||
fi
|
||||
if [ ! "`grep ' /dev/pts ' /proc/mounts`" ]; then
|
||||
mkdir -p /dev/pts
|
||||
mount -n -t devpts devpts /dev/pts -o gid=4,mode=620
|
||||
fi
|
||||
if [ ! "`grep ' /dev/shm ' /proc/mounts`" ]; then
|
||||
mkdir -p /dev/shm
|
||||
mount -n -t tmpfs devshm /dev/shm
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user