2003-10-30 09:14:24 +03:00
#! /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
2004-01-10 12:19:57 +03:00
. /etc/udev/udev.conf
2004-02-13 10:30:11 +03:00
prog=udev
2003-10-30 09:14:24 +03:00
sysfs_dir=/sys
bin=/sbin/udev
2003-12-25 08:47:14 +03:00
run_udev () {
# handle block devices and their partitions
2003-10-30 09:14:24 +03:00
for i in ${sysfs_dir}/block/*; do
2003-11-24 17:19:44 +03:00
# add each drive
export DEVPATH=${i#${sysfs_dir}}
2003-12-25 08:25:40 +03:00
$bin block &
2003-11-24 17:19:44 +03:00
# add each partition, on each device
2003-10-30 09:14:24 +03:00
for j in $i/*; do
if [ -f $j/dev ]; then
2003-11-24 17:19:44 +03:00
export DEVPATH=${j#${sysfs_dir}}
2003-12-25 08:25:40 +03:00
$bin block &
2003-10-30 09:14:24 +03:00
fi
done
done
2003-11-24 17:19:44 +03:00
# all other device classes
for i in ${sysfs_dir}/class/*; do
for j in $i/*; do
if [ -f $j/dev ]; then
export DEVPATH=${j#${sysfs_dir}}
CLASS=`echo ${i#${sysfs_dir}} | \
cut --delimiter='/' --fields=3-`
2003-12-25 08:25:40 +03:00
$bin $CLASS &
2003-11-24 17:19:44 +03:00
fi
done
done
2004-02-13 10:30:11 +03:00
return 0
2003-12-25 08:47:14 +03:00
}
case "$1" in
start)
if [ ! -d $sysfs_dir ]; then
exit 1
fi
2004-01-10 12:19:57 +03:00
if [ ! -d $udev_root ]; then
mkdir $udev_root
fi
2004-02-13 10:08:22 +03:00
# remove the database if it is there as we always want to start fresh
2004-02-13 10:20:50 +03:00
if [ -f $udev_root/.udev.tdb ]; then
rm -f $udev_root/.udev.tdb
2004-02-13 10:08:22 +03:00
fi
2003-12-25 08:47:14 +03:00
# 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
export ACTION=add
2004-02-13 10:30:11 +03:00
echo -n $"Creating initial udev device nodes:"
2003-12-25 08:47:14 +03:00
run_udev
2004-02-13 10:30:11 +03:00
success /bin/true
echo
touch /var/lock/subsys/udev
2003-10-30 09:14:24 +03:00
;;
stop)
# be careful
2004-02-13 10:30:11 +03:00
echo -n $"Removing udev device nodes: "
2003-12-25 08:47:14 +03:00
export ACTION=remove
run_udev
2004-02-13 10:30:11 +03:00
success /bin/true
echo
rm -f /var/lock/subsys/udev
2003-10-30 09:14:24 +03:00
;;
status)
2004-02-13 10:30:11 +03:00
if [ -f /var/lock/subsys/udev ]; then
echo $"$prog has run"
exit 0
2003-10-30 09:14:24 +03:00
fi
2004-02-13 10:30:11 +03:00
echo $"$prog is stopped"
exit 3
2003-10-30 09:14:24 +03:00
;;
2003-12-16 09:25:03 +03:00
restart)
$0 stop
$0 start
;;
reload)
2003-10-30 09:14:24 +03:00
# nothing to do here
;;
*)
2003-12-16 09:25:03 +03:00
echo "Usage: $0 {start|stop|status|restart}"
2003-10-30 09:14:24 +03:00
exit 1
esac
exit 0