aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/busybox-1.2.2/busybox-mdev.sh
blob: 9744322fa9af13764e1ce61998c081763c12d90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
MDEV=/sbin/mdev
DESC="Busybox mdev setup"

# Complain if thing's aren't right
if [ ! -e /proc/filesystems ]; then
  echo "mdev requires a mounted procfs, not started."
  exit 1
fi

if ! grep -q '[[:space:]]tmpfs$' /proc/filesystems; then
  echo "mdev requires tmpfs support, not started."
  exit 1
fi

if [ ! -d /sys/class/ ]; then
  echo "mdev requires a mounted sysfs, not started."
  exit 1
fi

if [ ! -e /proc/sys/kernel/hotplug ]; then
  echo "mdev requires hotplug support, not started."
  exit 1
fi

# We need to unmount /dev/pts/ and remount it later over the tmpfs
if mountpoint -q /dev/pts/; then
  umount -l /dev/pts/
fi

if mountpoint -q /dev/shm/; then
  umount -l /dev/shm/
fi

# Create tmpfs for /dev
echo "Creating tmpfs at /dev"
mount -t tmpfs tmpfs /dev -o size=800k

# Register mdev as hotplug event helper
echo "$MDEV" > /proc/sys/kernel/hotplug

# Populate /dev from /sys info
echo "Populating /dev using mdev"
$MDEV -s

# Touch .udev to inform scripts that /dev needs no further setup
touch /dev/.udev

# Mount devpts
TTYGRP=5
TTYMODE=620
mkdir -m 755 -p /dev/pts
if [ ! -e /dev/ptmx ]; then
    mknod -m 666 /dev/ptmx c 5 2
fi
mount -t devpts devpts /dev/pts -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE

# Make shm directory
mkdir -m 755 -p /dev/shm

# Make extraneous links
ln -sf /proc/self/fd /dev/fd
ln -sf /proc/self/fd/0 /dev/stdin
ln -sf /proc/self/fd/1 /dev/stdout
ln -sf /proc/self/fd/2 /dev/stderr
ln -sf /proc/kcore /dev/core
ln -sf /proc/asound/oss/sndstat /dev/sndstat

exit 0