diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-01-10 18:44:47 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-01-10 18:44:47 +0100 |
commit | a5b517dba551af7fd902464a5d866e2d5ce03508 (patch) | |
tree | b247100ca238edb053017b27175b6076bfc1dc4a /install/udev | |
parent | 3fceb27acec3c2039639c6f9d205da24b3b68619 (diff) | |
download | mkinitcpio-a5b517dba551af7fd902464a5d866e2d5ce03508.tar.gz mkinitcpio-a5b517dba551af7fd902464a5d866e2d5ce03508.tar.xz |
Add udev hook, originated from the obsolete klibc-udev package
Diffstat (limited to 'install/udev')
-rw-r--r-- | install/udev | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/install/udev b/install/udev new file mode 100644 index 0000000..986dc58 --- /dev/null +++ b/install/udev @@ -0,0 +1,28 @@ +# vim:set ft=sh: + +install () +{ + MODULES="" + BINARIES="" + FILES=" /etc/udev/udev.conf" + SCRIPT="udev" + add_binary /sbin/udevd + add_binary /sbin/udevadm + for rules in 50-firmware.rules 50-udev-default.rules 60-persistent-storage.rules 80-drivers.rules; do + add_file /lib/udev/rules.d/${rules} + done + for tool in firmware.sh; do + add_file /lib/udev/${tool} + done + add_file /lib/initcpio/udev/load-modules.sh /lib/udev/load-modules.sh +} + +help () +{ +cat <<HELPEOF + This hook will use udev to create your root device node + and detect the needed modules for your root device. It + is also required for firmware loading in initramfs. + It is recommended to use this hook. +HELPEOF +} |