]> git.pld-linux.org Git - packages/systemd.git/blob - start_udev
- revert last change, ${TMPDIR:-/tmp} is on a read only / at the time of boot
[packages/systemd.git] / start_udev
1 #!/bin/sh
2 #
3 # start_udev
4 #
5 # script to initialize /dev by using udev.
6 #
7 # Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
8 #
9 # Released under the GPL v2 only.
10 #
11 # This needs to be run at the earliest possible point in the boot
12 # process.
13 #
14 # Based on the udev init.d script
15 #
16 # Thanks go out to the Gentoo developers for proving
17 # that this is possible to do.
18 #
19 # Yes, it's very verbose, feel free to turn off all of the echo calls,
20 # they were there to make me feel better that everything was working
21 # properly during development...
22
23 # default value, if no config present.
24 udev_root="/dev"
25 sysfs_dir="/sys"
26 udevd_timeout=8
27
28 # don't use udev if sysfs is not mounted.
29 [ -d $sysfs_dir/class ] || exit 1
30 [ -r /proc/mounts ] || exit 1
31 [ -f /etc/udev/udev.conf ] && . /etc/udev/udev.conf
32
33 . /etc/rc.d/init.d/functions
34
35 prog=udev
36 bin=/sbin/udev
37 udevd=/lib/udev/udevd
38
39 make_extra_nodes () {
40         grep '^[^#]' /etc/udev/links.conf | \
41         while read type name arg1; do
42                 [ "$type" -a "$name" -a ! -e "$udev_root/$name" -a ! -L "/dev/$name" ] ||continue
43                 case "$type" in
44                         L) ln -s $arg1 $udev_root/$name ;;
45                         D) mkdir -p $udev_root/$name ;;
46                         M) mknod -m 600 /dev/$name $arg1 ;;
47                         *) echo "links.conf: unparseable line ($type $name $arg1)" ;;
48                 esac
49         done
50         [ -d /lib/udev/devices ] && cp -a /lib/udev/devices/* /dev/ >/dev/null 2>&1 || :
51         [ -d /lib64/udev/devices ] && cp -a /lib64/udev/devices/* /dev/ >/dev/null 2>&1 || :
52 }
53
54 kill_udevd() {
55         if [ -x /sbin/pidof ]; then
56                 pid=$(/sbin/pidof -x udevd)
57                 [ -n "$pid" ] && kill $pid
58         fi
59 }
60
61 set_hotplug_handler() {
62         echo "" > /proc/sys/kernel/hotplug
63 }
64
65 export ACTION=add
66 prog=udev
67 ret=0
68 show "Starting udev"
69 busy
70
71 # mount the devtmpfs on $udev_root, if not already done
72 awk "\$2 == \"$udev_root\" && \$3 == \"devtmpfs\" { exit 1 }" /proc/mounts && {
73
74         if grep -qF "none $udev_root/pts " /proc/mounts; then
75                 PTSDIR=$(mktemp -d ${TMPDIR:-/tmp}/tmpXXXXXX)
76                 mount --move $udev_root/pts "$PTSDIR"
77         fi
78
79         if grep -qF "none $udev_root/shm " /proc/mounts; then
80                 SHMDIR=$(mktemp -d ${TMPDIR:-/tmp}/tmpXXXXXX)
81                 mount --move $udev_root/shm "$SHMDIR"
82         fi
83
84         mount -n -o mode=0755 -t devtmpfs devtmpfs "$udev_root"
85         mkdir -m 0755 $udev_root/pts
86         mkdir -m 0755 $udev_root/shm
87         if [ -n "$PTSDIR" ]; then
88                 mount --move "$PTSDIR" $udev_root/pts
89                 rmdir "$PTSDIR"
90         fi
91         if [ -n "$SHMDIR" ]; then
92                 mount --move "$SHMDIR" $udev_root/shm
93                 rmdir "$SHMDIR"
94         fi
95
96         ret=$(( $ret + $? ))
97 }
98
99 kill_udevd > "$udev_root/null" 2>&1
100
101 # Start udevd daemon
102 $udevd --daemon
103 ret=$(( $ret + $? ))
104
105 # Making extra nodes
106 make_extra_nodes
107 ret=$(( $ret + $? ))
108
109 if [ -f "/sys/class/tty/console/uevent" ]; then
110         # Setting default hotplug handler
111         set_hotplug_handler
112         ret=$(( $ret + $? ))
113
114         # retrigger all events
115         # Udev finds it's own way of making this dir
116         # and making it by hand makes udevsettle
117         # work forever
118         #mkdir -p /dev/.udev/queue
119         udevadm trigger
120         ret=$(( $ret + $? ))
121
122         # wait for the events to finish
123         udevadm settle
124         ret=$(( $ret + $? ))
125 else
126         echo "Kernel too old for this udev version"
127 fi
128
129 ret=$(( $ret + $? ))
130 [ $ret -eq 0 ] && ok || fail
131 exit 0
This page took 1.329321 seconds and 4 git commands to generate.