Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers/files: nvidia.udev-rule
Date: Fri, 06 Apr 2012 18:21:02
Message-Id: 20120406182047.25FE92004C@flycatcher.gentoo.org
1 cardoe 12/04/06 18:20:47
2
3 Modified: nvidia.udev-rule
4 Log:
5 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
6
7 (Portage version: 2.1.10.55/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 x11-drivers/nvidia-drivers/files/nvidia.udev-rule
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/files/nvidia.udev-rule?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/files/nvidia.udev-rule?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/files/nvidia.udev-rule?r1=1.1&r2=1.2
15
16 Index: nvidia.udev-rule
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/files/nvidia.udev-rule,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- nvidia.udev-rule 6 Apr 2012 01:52:26 -0000 1.1
23 +++ nvidia.udev-rule 6 Apr 2012 18:20:47 -0000 1.2
24 @@ -1 +1,6 @@
25 -ACTION=="add|remove", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"
26 +ACTION=="add", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"
27 +# Previously the ACTION was "add|remove" but one user on bug #376527 had a
28 +# problem until he recompiled udev-171-r5, which is one of the versions I
29 +# tested with and it was fine. I'm breaking the rules out just to be safe
30 +# so someone else doesn't have an issue
31 +ACTION=="remove", DEVPATH=="/module/nvidia", SUBSYSTEM=="module", RUN+="nvidia-udev.sh $env{ACTION}"