summaryrefslogtreecommitdiff
path: root/initcpio-hook-udev
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane-aur@freethoughts.de>2024-09-04 19:28:45 +0200
committerThorsten Töpper <atsutane@freethoughts.de>2024-09-04 19:28:45 +0200
commit1a95cafac8876ac9ecca2b671b69d9c81a4a4113 (patch)
tree6a668a570f7db5c0ff02ccd24fa8fb46e8dd18d5 /initcpio-hook-udev
parent22d76052f49305f62b836ae28b31fd3a2fc7e0df (diff)
downloadsystemd-git-1a95cafac8876ac9ecca2b671b69d9c81a4a4113.tar.gz
systemd-git-1a95cafac8876ac9ecca2b671b69d9c81a4a4113.tar.bz2
Fix version string generation & sync with core/systemd
Diffstat (limited to 'initcpio-hook-udev')
-rw-r--r--initcpio-hook-udev26
1 files changed, 0 insertions, 26 deletions
diff --git a/initcpio-hook-udev b/initcpio-hook-udev
deleted file mode 100644
index dfa8750..0000000
--- a/initcpio-hook-udev
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/ash
-
-run_earlyhook() {
- kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
- systemd-tmpfiles --prefix=/dev --create --boot
- if [ "${quiet}" = "y" ]; then
- /usr/lib/systemd/systemd-udevd --daemon --resolve-names=never >/dev/null 2>&1
- else
- /usr/lib/systemd/systemd-udevd --daemon --resolve-names=never
- fi
- udevd_running=1
-}
-
-run_hook() {
- msg ":: Triggering uevents..."
- udevadm trigger --action=add --type=subsystems
- udevadm trigger --action=add --type=devices
- udevadm settle
-}
-
-run_cleanuphook() {
- udevadm control --exit
- udevadm info --cleanup-db
-}
-
-# vim: set ft=sh ts=4 sw=4 et: