home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- . /etc/sysconfig/rc
- . ${rc_functions}
-
- case "${1}" in
- start)
- boot_mesg "Populating /dev with device nodes..."
- mount -n -t tmpfs tmpfs /dev -o mode=755
- echo > /proc/sys/kernel/hotplug
- cp -a /lib/udev/devices/* /dev
- /sbin/udevd --daemon
- /sbin/udevtrigger
- /sbin/udevsettle
- ;;
-
- *)
- echo "Usage ${0} {start}"
- exit 1
- ;;
- esac
-
-