summarylogtreecommitdiffstats
path: root/modprobe
diff options
context:
space:
mode:
authorOliver Mangold2022-12-02 11:00:24 +0100
committerOliver Mangold2022-12-02 11:22:48 +0100
commit7495b8cfdc0dc2056bd0523b4016c391ed5c3d55 (patch)
treed19d8329be64f5408949ed6498c1418070931cc6 /modprobe
parent5133b37d23d45cae8214639e914e906ffc49729f (diff)
downloadaur-7495b8cfdc0dc2056bd0523b4016c391ed5c3d55.tar.gz
complete rewrite:
- do not use systemd but, but pacman hooks - do not use custom modprobe, but symlink from /usr/lib/modules to /var/cache/kmods
Diffstat (limited to 'modprobe')
-rwxr-xr-xmodprobe7
1 files changed, 0 insertions, 7 deletions
diff --git a/modprobe b/modprobe
deleted file mode 100755
index 97d4cf38f6f0..000000000000
--- a/modprobe
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-if cmp /proc/sys/kernel/osrelease /var/cache/kmods/osrelease 2>/dev/null; then
- exec /sbin/modprobe -S "cached" "$@"
-else
- exec /sbin/modprobe "$@"
-fi