summaryrefslogtreecommitdiff
path: root/package/udev/init-udev
blob: 5f51c5d3c36e0318b9b41bb4cdd67d38edb08e89 (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
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh
#
# udev	This is a minimal non-LSB version of a UDEV startup script.  It
#	was derived by stripping down the udev-058 LSB version for use
#	with buildroot on embedded hardware using Linux 2.6.12+ kernels.
#
#	You may need to customize this for your system's resource limits
#	(including startup time!) and administration.  For example, if
#	your early userspace has a custom initramfs or initrd you might
#	need /dev much earlier; or without hotpluggable busses (like USB,
#	PCMCIA, MMC/SD, and so on) your /dev might be static after boot.
#
#	This script assumes your system boots right into the eventual root
#	filesystem, and that init runs this udev script before any programs
#	needing more device nodes than the bare-bones set -- /dev/console,
#	/dev/zero, /dev/null -- that's needed to boot and run this script.
#

# old kernels don't use udev
case $(uname -r) in
2.6*|2.7*)	;;
*)		exit 0;;
esac

# Check for missing binaries
UDEV_BIN=/sbin/udev
test -x $UDEV_BIN || exit 5
UDEVSTART_BIN=/sbin/udevstart
test -x $UDEVSTART_BIN || exit 5
UDEVD_BIN=/sbin/udevd
test -x $UDEVD_BIN || exit 5

# Check for config file and read it
UDEV_CONFIG=/etc/udev/udev.conf
test -r $UDEV_CONFIG || exit 6
. $UDEV_CONFIG

# Directory where sysfs is mounted
SYSFS_DIR=/sys

case "$1" in
    start)
	# mount sysfs if it's not yet mounted
	if [ ! -d $SYSFS_DIR ]; then
		echo "${0}: SYSFS_DIR \"$SYSFS_DIR\" not found"
		exit 1
	fi
	grep -q "^sysfs $SYSFS_DIR" /proc/mounts ||
		mount -t sysfs /sys /sys ||
		exit 1

	# mount $udev_root as ramfs if it's not yet mounted
	# we know 2.6 kernels always support ramfs
	if [ ! -d $udev_root ]; then
		echo "${0}: udev_root \"$udev_root\" not found"
		exit 1
	fi
	grep -q "^udev $udev_root" /proc/mounts ||
		mount -t ramfs udev $udev_root ||
		exit 1

	# heck, go whole-hog:  use only new style hotplug
	# echo $UDEV_BIN > /proc/sys/kernel/hotplug

	# populate /dev (normally)
	echo -n "Populating $udev_root using udev... "
	$UDEVSTART_BIN || (echo "FAIL" && exit 1)
	mkdir $udev_root/pts $udev_root/shm
	# start daemon
	$UDEVD_BIN --daemon || (echo "udevd FAIL" && exit 1)
	echo "done"
	mount -a
	;;
    stop)
	# do nothing
	;;
    *)
	echo "Usage: $0 {start|stop}"
	exit 1
	;;
esac