summaryrefslogtreecommitdiff
path: root/libre-testing/systemd/initcpio-hook-udev
diff options
context:
space:
mode:
authorBruno Cichon <ebrasca@librepanther.com>2018-10-01 19:00:24 +0200
committerBruno Cichon <ebrasca@librepanther.com>2018-10-01 19:00:24 +0200
commit7b0e23aa952d001065f3f2432e4a6c57ac581b5c (patch)
tree71aa12fa4c5e06a5328f04dad597343dd95e6e46 /libre-testing/systemd/initcpio-hook-udev
parent6a6c10b720f6e8181721200dbb7c0a9b2ba543f5 (diff)
downloadabslibre-7b0e23aa952d001065f3f2432e4a6c57ac581b5c.tar.gz
abslibre-7b0e23aa952d001065f3f2432e4a6c57ac581b5c.tar.bz2
abslibre-7b0e23aa952d001065f3f2432e4a6c57ac581b5c.zip
Remove filesystem and systemd from libre-testing
Diffstat (limited to 'libre-testing/systemd/initcpio-hook-udev')
-rw-r--r--libre-testing/systemd/initcpio-hook-udev22
1 files changed, 0 insertions, 22 deletions
diff --git a/libre-testing/systemd/initcpio-hook-udev b/libre-testing/systemd/initcpio-hook-udev
deleted file mode 100644
index ea9a11f8c..000000000
--- a/libre-testing/systemd/initcpio-hook-udev
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/ash
-
-run_earlyhook() {
- kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
- systemd-tmpfiles --prefix=/dev --create --boot
- /usr/lib/systemd/systemd-udevd --daemon --resolve-names=never
- 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: