diff options
author | David P <megver83@parabola.nu> | 2019-11-13 16:21:17 -0300 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2019-11-13 16:21:17 -0300 |
commit | e248e462fc0dc8b520ed9c55d2ac37a77b5eaa9a (patch) | |
tree | 4b7ee322f85a89f1a63cefb607cdc22b60ba4bd5 /nonsystemd/eudev/initcpio_install | |
parent | d94a8ccae66c35c65aaeba35bec8d585c0758f6f (diff) | |
download | abslibre-e248e462fc0dc8b520ed9c55d2ac37a77b5eaa9a.tar.gz abslibre-e248e462fc0dc8b520ed9c55d2ac37a77b5eaa9a.tar.bz2 abslibre-e248e462fc0dc8b520ed9c55d2ac37a77b5eaa9a.zip |
addpkg: nonsystemd/eudev 3.2.9-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'nonsystemd/eudev/initcpio_install')
-rw-r--r-- | nonsystemd/eudev/initcpio_install | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/nonsystemd/eudev/initcpio_install b/nonsystemd/eudev/initcpio_install new file mode 100644 index 000000000..610b71c3d --- /dev/null +++ b/nonsystemd/eudev/initcpio_install @@ -0,0 +1,27 @@ +#!/bin/bash + +build() { + add_file "/etc/udev/udev.conf" + add_binary /usr/bin/udevd + add_binary /usr/bin/udevadm + + for rule in 50-udev-default.rules 60-persistent-storage.rules 64-btrfs.rules 80-drivers.rules; do + add_file "/usr/lib/udev/rules.d/$rule" + done + + for tool in ata_id scsi_id; do + add_file "/usr/lib/udev/$tool" + done + + add_runscript +} + +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 +} + +# vim: set ft=sh ts=4 sw=4 et: |