summaryrefslogtreecommitdiff
blob: 20b2bd800b16972b8499b9a9a382903118a5bd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Index: udev-git/etc/udev/gentoo/30-kernel-compat.rules
===================================================================
--- udev-git.orig/etc/udev/gentoo/30-kernel-compat.rules
+++ udev-git/etc/udev/gentoo/30-kernel-compat.rules
@@ -34,13 +34,13 @@ SUBSYSTEM!="scsi_device", GOTO="kernel_c
 	# sr:           4 TYPE_WORM, 5 TYPE_ROM
 	# st/osst:      1 TYPE_TAPE
 
-	ATTRS{type}=="0|7|14",	RUN+="modprobe.sh sd_mod"
-	ATTRS{type}=="4|5",	RUN+="modprobe.sh sr_mod"
-	ATTRS{type}=="8",	RUN+="modprobe.sh ch"
+	ATTRS{type}=="0|7|14",	RUN+="/sbin/modprobe sd_mod"
+	ATTRS{type}=="4|5",	RUN+="/sbin/modprobe sr_mod"
+	ATTRS{type}=="8",	RUN+="/sbin/modprobe ch"
 
 	ATTRS{type}=="1", ATTRS{vendor}=="On[sS]tream", \
-		ATTRS{model}!="ADR*", RUN+="modprobe.sh osst", GOTO="kernel_compat_end"
-	ATTRS{type}=="1", RUN+="modprobe.sh st"
+		ATTRS{model}!="ADR*", RUN+="/sbin/modprobe osst", GOTO="kernel_compat_end"
+	ATTRS{type}=="1", RUN+="/sbin/modprobe st"
 
 LABEL="kernel_compat_end"