summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/udev/udev
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/udev/udev')
-rw-r--r--meta/recipes-core/udev/udev/init7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
index 74449feaaa..1934d11e49 100644
--- a/meta/recipes-core/udev/udev/init
+++ b/meta/recipes-core/udev/udev/init
@@ -37,10 +37,13 @@ export ACTION=add
37echo "Starting udev" 37echo "Starting udev"
38 38
39# mount the tmpfs on /dev, if not already done 39# mount the tmpfs on /dev, if not already done
40mount -a -t tmpfs 40LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && {
41mkdir -p /var/volatile/run 41 mount -n -o mode=0755 -t tmpfs none "/dev"
42}
42[ -e /dev/pts ] || mkdir -m 0755 /dev/pts 43[ -e /dev/pts ] || mkdir -m 0755 /dev/pts
43[ -e /dev/shm ] || mkdir -m 1777 /dev/shm 44[ -e /dev/shm ] || mkdir -m 1777 /dev/shm
45mount -a -t tmpfs 2>/dev/null
46mkdir -p /var/volatile/run
44 47
45# cache handling 48# cache handling
46if [ "$DEVCACHE" != "" ]; then 49if [ "$DEVCACHE" != "" ]; then