summaryrefslogtreecommitdiff
path: root/libre-testing/systemd/initcpio-install-udev
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-01-18 01:26:00 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-01-18 01:26:00 +0100
commit7262681e044dffa25820ea90c657ffac266c254c (patch)
tree129c6b76a842f9a9dadbcfe4526a8e05d2731ec0 /libre-testing/systemd/initcpio-install-udev
parentd9473a265ba35ed979d986804d843c2d1a43d520 (diff)
downloadabslibre-7262681e044dffa25820ea90c657ffac266c254c.tar.gz
abslibre-7262681e044dffa25820ea90c657ffac266c254c.tar.bz2
abslibre-7262681e044dffa25820ea90c657ffac266c254c.zip
Move systemd 240.34 from libre-testing to libre
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre-testing/systemd/initcpio-install-udev')
-rw-r--r--libre-testing/systemd/initcpio-install-udev29
1 files changed, 0 insertions, 29 deletions
diff --git a/libre-testing/systemd/initcpio-install-udev b/libre-testing/systemd/initcpio-install-udev
deleted file mode 100644
index 31d982712..000000000
--- a/libre-testing/systemd/initcpio-install-udev
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-build() {
- local rules tool
-
- add_binary /usr/lib/systemd/systemd-udevd
- add_binary /usr/bin/udevadm
- add_binary /usr/bin/systemd-tmpfiles
-
- for rules in 50-udev-default.rules 60-persistent-storage.rules 64-btrfs.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 adds the udev daemon to the initramfs, allowing for dynamic loading
-of modules and reliable detection of the root device via tags (e.g. UUID or
-LABEL). Do not remove this hook unless you are using the systemd hook, or you
-know what you're doing.
-HELPEOF
-}
-
-# vim: set ft=sh ts=4 sw=4 et: