]> git.pld-linux.org Git - packages/systemd.git/blobdiff - start_udev
- add tmpfs compatibility for older kernels
[packages/systemd.git] / start_udev
index 1b1509083bbd9058a7cf0266301d4a9ca3418563..a727c6bcfc307f88b35e0eacd37787611a1f8ef4 100644 (file)
@@ -68,8 +68,8 @@ ret=0
 show "Starting udev"
 busy
 
-# mount the devtmpfs on ${udev_root%/}, if not already done
-LANG=C awk "\$2 == \"${udev_root%/}\" && \$3 == \"devtmpfs\" { exit 1 }" /proc/mounts && {
+# mount the devtmpfs (tmpfs on older kernels) on ${udev_root%/}, if not already done
+LANG=C awk "\$2 == \"${udev_root%/}\" && ( \$3 == \"tmpfs\" || \$3 == \"devtmpfs\" ) { exit 1 }" /proc/mounts && {
        if LANG=C fgrep -q "none ${udev_root%/}/pts " /proc/mounts; then
                PTSDIR=$(mktemp -d ${TMPDIR:-/tmp}/tmpXXXXXX)
                mount --move $udev_root/pts "$PTSDIR"
@@ -78,7 +78,11 @@ LANG=C awk "\$2 == \"${udev_root%/}\" && \$3 == \"devtmpfs\" { exit 1 }" /proc/m
                SHMDIR=$(mktemp -d ${TMPDIR:-/tmp}/tmpXXXXXX)
                mount --move $udev_root/shm "$SHMDIR"
        fi
-       mount -n -o mode=0755 -t devtmpfs devtmpfs "$udev_root"
+       if grep -qs devtmpfs /proc/filesystems; then
+               mount -n -o mode=0755 -t devtmpfs devtmpfs "$udev_root"
+       else
+               mount -n -o mode=0755 -t tmpfs none "$udev_root"
+       fi
        mkdir -m 0755 $udev_root/pts
        mkdir -m 0755 $udev_root/shm
        if [ -n "$PTSDIR" ]; then
This page took 0.070415 seconds and 4 git commands to generate.