summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2012-04-06 18:20:47 +0000
committerDoug Goldstein <cardoe@gentoo.org>2012-04-06 18:20:47 +0000
commit596df03dd0ec4a21f3930753bd5c468c60116e29 (patch)
tree1700d07f69888270046acd2f913a04771805ebac /x11-drivers
parentRespect $PKG_CONFIG, and quote the cc flags as people sometimes do CC="gcc -f... (diff)
downloadgentoo-2-596df03dd0ec4a21f3930753bd5c468c60116e29.tar.gz
gentoo-2-596df03dd0ec4a21f3930753bd5c468c60116e29.tar.bz2
gentoo-2-596df03dd0ec4a21f3930753bd5c468c60116e29.zip
Break the udev rule into two pieces because a user on bug #376527 had a problem with the combined rule on udev-171-r5. It worked fine after he recompiled udev but obviously since there was an issue we should just use it broken out. bug #376527
(Portage version: 2.1.10.55/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers')
-rw-r--r--x11-drivers/nvidia-drivers/ChangeLog8
-rw-r--r--x11-drivers/nvidia-drivers/files/nvidia.udev-rule7
2 files changed, 13 insertions, 2 deletions
diff --git a/x11-drivers/nvidia-drivers/ChangeLog b/x11-drivers/nvidia-drivers/ChangeLog
index cfca7a780b14..88c704d76dff 100644
--- a/x11-drivers/nvidia-drivers/ChangeLog
+++ b/x11-drivers/nvidia-drivers/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-drivers/nvidia-drivers
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.329 2012/04/06 06:46:14 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.330 2012/04/06 18:20:46 cardoe Exp $
+
+ 06 Apr 2012; Doug Goldstein <cardoe@gentoo.org> files/nvidia.udev-rule:
+ Break the udev rule into two pieces because a user on bug #376527 had a
+ problem with the combined rule on udev-171-r5. It worked fine after he
+ recompiled udev but obviously since there was an issue we should just use it
+ broken out. bug #376527
06 Apr 2012; Doug Goldstein <cardoe@gentoo.org> nvidia-drivers-295.33.ebuild:
Script needs to be executable
diff --git a/x11-drivers/nvidia-drivers/files/nvidia.udev-rule b/x11-drivers/nvidia-drivers/files/nvidia.udev-rule
index 4b5dd6d2ee44..2eb30bb0eba5 100644
--- a/x11-drivers/nvidia-drivers/files/nvidia.udev-rule
+++ b/x11-drivers/nvidia-drivers/files/nvidia.udev-rule
@@ -1 +1,6 @@
-ACTION=="add|remove", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"
+ACTION=="add", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"
+# Previously the ACTION was "add|remove" but one user on bug #376527 had a
+# problem until he recompiled udev-171-r5, which is one of the versions I
+# tested with and it was fine. I'm breaking the rules out just to be safe
+# so someone else doesn't have an issue
+ACTION=="remove", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"