blob: 99f06c296306f8fee99929b7856a82446ab2b218 (
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
|
#! /bin/bash
#
# random init script to setup /udev
#
# chkconfig: 2345 20 80
# description: manage user-space device nodes in /udev
. /etc/rc.d/init.d/functions
udev_dir=/udev
sysfs_dir=/sys
bin=/sbin/udev
case "$1" in
start)
if [ ! -d $udev_dir ]; then
mkdir $udev_dir
fi
if [ ! -d $sysfs_dir ]; then
exit 1
fi
# propogate /udev from /sys - we only need this while we do not
# have initramfs and an early user-space with which to do early
# device bring up
action "Creating initial udev device nodes: " /bin/true
export ACTION=add
# add tty devices
for i in ${sysfs_dir}/class/tty/*; do
export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`
$bin tty
done
# add block devices and their partitions
for i in ${sysfs_dir}/block/*; do
export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`
$bin block
for j in $i/*; do
if [ -f $j/dev ]; then
export DEVPATH="/"`echo $j | \
cut --delimiter='/' --fields=3-`
$bin block
fi
done
done
# TODO: add other device classes
;;
stop)
# be careful
if [ $udev_dir -a "$udev_dir" != "/" ]; then
# clear out /udev
rm -rf ${udev_dir}/*
fi
;;
status)
if [ -d $udev_dir ]; then
echo "the udev device node directory exists"
else
echo "the udev device node directory does not exist"
fi
;;
restart|reload)
# nothing to do here
;;
*)
echo "Usage: $0 {start|stop|status}"
exit 1
esac
exit 0
|