diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-02-11 19:31:31 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-02-11 19:31:31 +0100 |
commit | 0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2 (patch) | |
tree | 31768b40897ce1d9ac3c2b22c1d8fcc89b6ecd23 /install/udev | |
parent | 1a91e4fa8e2d9823082843e98021c3345f82f072 (diff) | |
parent | d67250f427937cb4b6f75b27d47d35302bd9890b (diff) | |
download | mkinitcpio-0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2.tar.gz mkinitcpio-0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2.tar.xz |
Merge branch 'kill-klibc'
Conflicts:
Makefile
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..17a82c9 --- /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; 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 +} |