source: bootscripts/lfs/init.d/udev@ 87af6d6

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 87af6d6 was 87af6d6, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Update readline, bash, and mpfr patches.
Remove obsolete hotplug referece in udev boot script.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10689 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[1c48007]1#!/bin/sh
2########################################################################
[0cda898]3# Begin udev
[1c48007]4#
5# Description : Udev cold-plugging script
6#
7# Authors : Zack Winkles, Alexander E. Patrakov
[f874424]8# DJ Lucas - dj@linuxfromscratch.org
[0cda898]9# Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
[1c48007]10#
[0cda898]11# Version : LFS 7.0
[1c48007]12#
13########################################################################
14
[0cda898]15### BEGIN INIT INFO
[40690e1]16# Provides: udev $time
[0cda898]17# Required-Start:
18# Should-Start: modules
19# Required-Stop:
20# Should-Stop:
21# Default-Start: S
22# Default-Stop:
23# Short-Description: Populates /dev with device nodes.
24# Description: Mounts a tempfs on /dev and starts the udevd daemon.
25# Device nodes are created as defined by udev.
26# X-LFS-Provided-By: LFS
27### END INIT INFO
[1c48007]28
[f874424]29. /lib/lsb/init-functions
[1c48007]30
[0cda898]31case "${1}" in
32 start)
[f874424]33 log_info_msg "Populating /dev with device nodes... "
[0cda898]34 if ! grep -q '[[:space:]]sysfs' /proc/mounts; then
[f874424]35 log_failure_msg2
36 msg="FAILURE:\n\nUnable to create "
37 msg="${msg}devices without a SysFS filesystem\n\n"
38 msg="${msg}After you press Enter, this system "
39 msg="${msg}will be halted and powered off.\n\n"
40 log_info_msg "$msg"
41 log_info_msg "Press Enter to continue..."
[0cda898]42 wait_for_user
43 /etc/rc.d/init.d/halt stop
44 fi
[1c48007]45
[0cda898]46 # Start the udev daemon to continually watch for, and act on,
47 # uevents
[f6fe500]48 /sbin/udevd --daemon
[1c48007]49
[0cda898]50 # Now traverse /sys in order to "coldplug" devices that have
51 # already been discovered
[f6fe500]52 /sbin/udevadm trigger --action=add --type=subsystems
53 /sbin/udevadm trigger --action=add --type=devices
54 /sbin/udevadm trigger --action=change --type=devices
[1c48007]55
[0cda898]56 # Now wait for udevd to process the uevents we triggered
[85ce884e]57 if ! is_true "$OMIT_UDEV_SETTLE"; then
[f6fe500]58 /sbin/udevadm settle
[85ce884e]59 fi
[c899581]60
61 # If any LVM based partitions are on the system, ensure they
62 # are activated so they can be used.
63 if [ -x /sbin/vgchange ]; then /sbin/vgchange -a y >/dev/null; fi
64
[642e2e9]65 log_success_msg2
[0cda898]66 ;;
[1c48007]67
[0cda898]68 *)
69 echo "Usage ${0} {start}"
70 exit 1
71 ;;
[1c48007]72esac
73
[f874424]74exit 0
75
[0cda898]76# End udev
Note: See TracBrowser for help on using the repository browser.