summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorrml@tech9.net <rml@tech9.net>2003-10-29 22:14:24 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:06:22 -0700
commit8b94dcd0671b038754af7683eccea5b32ccb955d (patch)
tree5891269e5d09e30471b8dc6e74f8b245d443f55a /etc
parent2d5b68864f8beeaa89b3d026c6de9a97d70eeb04 (diff)
[PATCH] udev init script
I integrated udev with Fedora Core. The main piece is simply building /udev on boot, since we don't have an initramfs yet. We should also clear out /udev on shutdown, for /udev directories mounted on persistent media. The attached script goes in /etc/init.d Then do "chkconfig --add udev" And the rest is handled automatically. I made it for Fedora but it will probably work, with little change, on any Linux system. Right now it only does sysfs-based discovery of block and tty devices, since those are the only types of devices I have on my system. There is a TODO in the script where we would add the other device types.
Diffstat (limited to 'etc')
-rw-r--r--etc/init.d/udev68
1 files changed, 68 insertions, 0 deletions
diff --git a/etc/init.d/udev b/etc/init.d/udev
new file mode 100644
index 0000000000..99f06c2963
--- /dev/null
+++ b/etc/init.d/udev
@@ -0,0 +1,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