]> git.pld-linux.org Git - packages/systemd.git/blob - start_udev
Fix typos in network.service and pld-wait-storage.service
[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 # trim traling slash, code expects it not to be there
39 udev_root=${udev_root%/}
40
41 make_extra_nodes () {
42         grep '^[^#]' /etc/udev/links.conf | \
43         while read type name arg1; do
44                 [ "$type" -a "$name" -a ! -e "$udev_root/$name" -a ! -L "/dev/$name" ] ||continue
45                 case "$type" in
46                         L) ln -s $arg1 $udev_root/$name ;;
47                         D) mkdir -p $udev_root/$name ;;
48                         M) mknod -m 600 /dev/$name $arg1 ;;
49                         *) echo "links.conf: unparseable line ($type $name $arg1)" ;;
50                 esac
51         done
52         [ -d /lib/udev/devices ] && cp -a /lib/udev/devices/* /dev/ >/dev/null 2>&1 || :
53         [ -d /lib64/udev/devices ] && cp -a /lib64/udev/devices/* /dev/ >/dev/null 2>&1 || :
54 }
55
56 kill_udevd() {
57         if [ -x /sbin/pidof ]; then
58                 pid=$(/sbin/pidof -x udevd)
59                 [ -n "$pid" ] && kill $pid
60         fi
61 }
62
63 set_hotplug_handler() {
64         echo "" > /proc/sys/kernel/hotplug
65 }
66
67 # find subdirs mounted under $udev_root
68 get_dev_mounts() {
69         awk -vudev_root="$udev_root/" '
70         BEGIN {
71           len = length(udev_root);
72         }
73
74         substr($2, 1, len) == udev_root {
75           print substr($2, len + 1)
76         }' /proc/mounts
77 }
78
79 export ACTION=add
80 prog=udev
81 ret=0
82 show "Starting udev"
83 busy
84
85 # mount the devtmpfs on $udev_root, if not already done
86 awk "\$2 == \"$udev_root\" && \$3 == \"devtmpfs\" { exit 1 }" /proc/mounts && {
87         submounts=$(get_dev_mounts)
88
89         if [ "$submounts" ]; then
90                 # mount to temporary location to be able to move submounts
91                 # this needs writable TMPDIR:-/tmp, so it won't work in early boot
92                 # but fix is simple: use initramfs instead of romfs
93                 devdir=$(mktemp -d ${TMPDIR:-/tmp}/tmpXXXXXX)
94         else
95                 devdir=$udev_root
96         fi
97         mount -n -o mode=0755 -t devtmpfs devtmpfs "$devdir"
98         ret=$(( $ret + $? ))
99
100         # relocate submounts
101         for dir in $submounts; do
102                 mount -n --move $udev_root/$dir $devdir/$dir
103                 ret=$(( $ret + $? ))
104         done
105
106         if [ "$submounts" ]; then
107                 mount -n --move $devdir $udev_root
108                 rmdir $devdir
109         fi
110 }
111
112 kill_udevd > "$udev_root/null" 2>&1
113
114 # Start udevd daemon
115 $udevd --daemon
116 ret=$(( $ret + $? ))
117
118 # Making extra nodes
119 make_extra_nodes
120 ret=$(( $ret + $? ))
121
122 if [ -f "/sys/class/tty/console/uevent" ]; then
123         # Setting default hotplug handler
124         set_hotplug_handler
125         ret=$(( $ret + $? ))
126
127         # retrigger all events
128         # Udev finds it's own way of making this dir
129         # and making it by hand makes udevsettle
130         # work forever
131         #mkdir -p /dev/.udev/queue
132         udevadm trigger
133         ret=$(( $ret + $? ))
134
135         # wait for the events to finish
136         udevadm settle
137         ret=$(( $ret + $? ))
138 else
139         echo "Kernel too old for this udev version"
140 fi
141
142 ret=$(( $ret + $? ))
143 [ $ret -eq 0 ] && ok || fail
144 exit 0
This page took 0.072465 seconds and 3 git commands to generate.