diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2007-03-09 15:17:40 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2007-03-09 15:17:40 +0000 |
commit | bf241dfbffff04e4cdb834b9cd198cd1ed1d89d6 (patch) | |
tree | e74b758bac6454a5b094a7a29b3654aa12d65388 /sys-fs/udev/files/udev.rules-104-r10 | |
parent | Change incorrect dependency on libstdc++ and update post-install message. (diff) | |
download | historical-bf241dfbffff04e4cdb834b9cd198cd1ed1d89d6.tar.gz historical-bf241dfbffff04e4cdb834b9cd198cd1ed1d89d6.tar.bz2 historical-bf241dfbffff04e4cdb834b9cd198cd1ed1d89d6.zip |
Backported fix for calling modprobe.sh for pnp devices from udev-106-r1.ebuild.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'sys-fs/udev/files/udev.rules-104-r10')
-rw-r--r-- | sys-fs/udev/files/udev.rules-104-r10 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-fs/udev/files/udev.rules-104-r10 b/sys-fs/udev/files/udev.rules-104-r10 index 9701a2bb1df3..4df144161256 100644 --- a/sys-fs/udev/files/udev.rules-104-r10 +++ b/sys-fs/udev/files/udev.rules-104-r10 @@ -247,7 +247,7 @@ SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/u ENV{MODALIAS}=="?*", ACTION=="add", RUN+="modprobe.sh $env{MODALIAS}" # /etc/modprobe.conf. -SUBSYSTEM=="pnp", ENV{MODALIAS}!="?*", RUN+="/bin/sh -c 'while read id; do modprobe.sh pnp:d$$id; done < /sys$devpath/id'" +SUBSYSTEM=="pnp", ENV{MODALIAS}!="?*", RUN+="/bin/sh -c 'while read id; do /lib/udev/modprobe.sh pnp:d$$id; done < /sys$devpath/id'" # If you have problems with some pnp modules being loaded, please enter the # following aliases into the modprobe configuration files. These are needed by # udev to autoload some modules |