summary refs log tree commit diff
path: root/contrib/rvnit/sv/02Sstatic-devnodes
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2022-01-07 01:02:22 +0100
committerLeah Neukirchen <leah@vuxu.org>2022-01-07 01:02:22 +0100
commit07ba00058350948a8a5e89aa312c6f5b12098d93 (patch)
treed07d8185e2a026f588146cf17e26648fc486222e /contrib/rvnit/sv/02Sstatic-devnodes
parent5f76e13946b91213cae66d423a90a27eda24dc1a (diff)
downloadrvnit-07ba00058350948a8a5e89aa312c6f5b12098d93.tar.gz
rvnit-07ba00058350948a8a5e89aa312c6f5b12098d93.tar.xz
rvnit-07ba00058350948a8a5e89aa312c6f5b12098d93.zip
add contrib
Diffstat (limited to 'contrib/rvnit/sv/02Sstatic-devnodes')
-rwxr-xr-xcontrib/rvnit/sv/02Sstatic-devnodes8
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/rvnit/sv/02Sstatic-devnodes b/contrib/rvnit/sv/02Sstatic-devnodes
new file mode 100755
index 0000000..ef747a4
--- /dev/null
+++ b/contrib/rvnit/sv/02Sstatic-devnodes
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+# Some kernel modules must be loaded before starting udev(7).
+# Load them by looking at the output of `kmod static-nodes`.
+
+for f in $(kmod static-nodes 2>/dev/null|awk '/Module/ {print $2}'); do
+	modprobe -bq $f 2>/dev/null
+done