source: bootscripts/contrib/lsb-v3/init.d/udev@ 84ce1e3

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.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 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 84ce1e3 was 84ce1e3, checked in by DJ Lucas <dj@…>, 13 years ago

Synced lsb-v3 scripts with main bootscripts, changed format of changelog.

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

  • Property mode set to 100644
File size: 2.5 KB
Line 
1#!/bin/sh
2# Begin $rc_base/init.d/udev
3
4### BEGIN INIT INFO
5# Provides: udev
6# Required-Start:
7# Should-Start: modules
8# Required-Stop:
9# Should-Stop:
10# Default-Start: S
11# Default-Stop:
12# Short-Description: Populated /dev with device nodes.
13# Description: Mounts a tempfs on /dev and starts the udevd daemon.
14# Device nodes are created as defined by udev.
15# X-LFS-Provided-By: LFS
16### END INIT INFO
17
18. /lib/lsb/init-functions
19
20MESSAGE="Populating /dev with device nodes..."
21
22case "${1}" in
23 start)
24 if ! grep -q '[[:space:]]sysfs' /proc/mounts; then
25 echo_failure
26 boot_mesg -n "FAILURE:\n\nUnable to create" ${FAILURE}
27 boot_mesg -n " devices without a SysFS filesystem"
28 boot_mesg -n "\n\nAfter you press Enter, this system"
29 boot_mesg -n " will be halted and powered off."
30 boot_mesg -n "\n\nPress Enter to continue..." ${INFO}
31 boot_mesg "" ${NORMAL}
32 read ENTER
33 /etc/rc.d/init.d/halt stop
34 fi
35
36 # Mount a temporary file system over /dev, so that any devices
37 # made or removed during this boot don't affect the next one.
38 # The reason we don't write to mtab is because we don't ever
39 # want /dev to be unavailable (such as by `umount -a').
40 if ! mountpoint /dev > /dev/null; then
41 mount -n -t tmpfs tmpfs /dev -o mode=755
42 fi
43 if [ ${?} -ne 0 ]; then
44 echo_failure
45 boot_mesg -n "FAILURE:\n\nCannot mount a tmpfs" ${FAILURE}
46 boot_mesg -n " onto /dev, this system will be halted."
47 boot_mesg -n "\n\nAfter you press Enter, this system"
48 boot_mesg -n " will be halted and powered off."
49 boot_mesg -n "\n\nPress Enter to continue..." ${INFO}
50 boot_mesg "" ${NORMAL}
51 read ENTER
52 /etc/rc.d/init.d/halt stop
53 fi
54
55 # Create a symlink for POSIX shared memory
56 ln -s /run/shm /dev/shm
57
58 # Udev handles uevents itself, so we don't need to have
59 # the kernel call out to any binary in response to them
60 echo > /proc/sys/kernel/hotplug
61
62 # Copy the only static device node that Udev >= 155 doesn't
63 # handle to /dev
64 cp -a /lib/udev/devices/null /dev
65
66 # Start the udev daemon to continually watch for, and act on,
67 # uevents
68 /sbin/udevd --daemon
69
70 # Now traverse /sys in order to "coldplug" devices that have
71 # already been discovered
72 /sbin/udevadm trigger --action=add
73
74 # Now wait for udevd to process the uevents we triggered
75 /sbin/udevadm settle
76 evaluate_retval standard
77 ;;
78
79 *)
80 echo "Usage ${0} {start}"
81 exit 1
82 ;;
83esac
84
85# End $rc_base/init.d/udev
Note: See TracBrowser for help on using the repository browser.