archboot/usr/lib/initcpio/install/arch_udev

21 lines
383 B
Text
Raw Normal View History

2012-05-27 17:12:28 +02:00
#!/bin/bash
2009-12-11 11:32:41 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
2007-02-22 23:46:50 +01:00
build ()
2007-02-22 23:46:50 +01:00
{
2012-05-27 17:12:28 +02:00
add_binary "/usr/bin/logger"
add_file "/etc/udev/udev.conf"
2012-04-04 11:34:16 +02:00
add_file /usr/lib/modprobe.d/usb-load-ehci-first.conf
add_binary /usr/bin/udevd
# add rule files
2012-06-26 09:23:04 +02:00
add_full_dir /usr/lib/udev
2012-05-27 17:12:28 +02:00
add_runscript
2007-02-22 23:46:50 +01:00
}
help ()
{
cat <<HELPEOF
2008-12-06 19:12:19 +01:00
This hook includes udevd and rule files.
2007-02-22 23:46:50 +01:00
HELPEOF
}