summaryrefslogtreecommitdiff
path: root/libre/systemd/trunk/initcpio-install-udev
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-05-30 17:43:28 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-05-30 17:43:28 -0300
commit354f539407e336532a429aead7d2249b26611653 (patch)
treee13728407a2c0758c23f992a7ca1c0fd793008fd /libre/systemd/trunk/initcpio-install-udev
parente68d976a35ac019eaad2d80b2818748211176d5b (diff)
downloadabslibre-354f539407e336532a429aead7d2249b26611653.tar.gz
abslibre-354f539407e336532a429aead7d2249b26611653.tar.bz2
abslibre-354f539407e336532a429aead7d2249b26611653.zip
Adding systemd as a subtree merge from another branch
This is under testing!
Diffstat (limited to 'libre/systemd/trunk/initcpio-install-udev')
-rw-r--r--libre/systemd/trunk/initcpio-install-udev28
1 files changed, 28 insertions, 0 deletions
diff --git a/libre/systemd/trunk/initcpio-install-udev b/libre/systemd/trunk/initcpio-install-udev
new file mode 100644
index 000000000..762429983
--- /dev/null
+++ b/libre/systemd/trunk/initcpio-install-udev
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+build() {
+ local rules tool
+
+ add_file "/etc/udev/udev.conf"
+ add_binary /usr/lib/systemd/systemd-udevd /usr/bin/udevd
+ add_binary /usr/bin/udevadm
+
+ for rules in 50-udev-default.rules 60-persistent-storage.rules 80-drivers.rules; do
+ add_file "/usr/lib/udev/rules.d/$rules"
+ 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: