f94818b0fa
Changes: - Linux kernel requirement: 2.6.34 and above (devtmpfs is mandatory) (this also applies to the chosen toolchain, because of Kernel headers) - optional dependency on libusb and usbutils removed - added dependency on kmod - added dependency on util-linux for libblkid - install in /lib/udev instead of /usr/libexec/udev - udevd moved to /lib/udev - fixed path to pci.ids and usb.ids - persistent rules generator is disabled by default, so option is introduced to enable this option if desired [Peter: fix build on uClibc, Config.in tweaks] Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
48 lines
1.4 KiB
Bash
Executable File
48 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# udev This is a minimal non-LSB version of a UDEV startup script. It
|
|
# was derived by stripping down the udev-058 LSB version for use
|
|
# with buildroot on embedded hardware using Linux 2.6.34+ kernels.
|
|
#
|
|
# You may need to customize this for your system's resource limits
|
|
# (including startup time!) and administration. For example, if
|
|
# your early userspace has a custom initramfs or initrd you might
|
|
# need /dev much earlier; or without hotpluggable busses (like USB,
|
|
# PCMCIA, MMC/SD, and so on) your /dev might be static after boot.
|
|
#
|
|
# This script assumes your system boots right into the eventual root
|
|
# filesystem, and that init runs this udev script before any programs
|
|
# needing more device nodes than the bare-bones set -- /dev/console,
|
|
# /dev/zero, /dev/null -- that's needed to boot and run this script.
|
|
#
|
|
|
|
# Check for missing binaries
|
|
UDEV_BIN=/lib/udev/udevd
|
|
test -x $UDEV_BIN || exit 5
|
|
|
|
# Check for config file and read it
|
|
UDEV_CONFIG=/etc/udev/udev.conf
|
|
test -r $UDEV_CONFIG || exit 6
|
|
. $UDEV_CONFIG
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Populating $udev_root using udev: "
|
|
echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
|
|
$UDEV_BIN -d || (echo "FAIL" && exit 1)
|
|
echo "done"
|
|
;;
|
|
stop)
|
|
# Stop execution of events
|
|
udevadm control --stop_exec_queue
|
|
killall udevd
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
|
|
exit 0
|