View previous topic :: View next topic |
Author |
Message |
djdunn l33t


Joined: 26 Dec 2004 Posts: 765 Location: Arrakis
|
Posted: Sun Jul 07, 2013 2:47 am Post subject: Linux kernel 3.10.* with nvidia drivers 319.32 howto |
|
|
simplified from multiple posts from here https://forums.gentoo.org/viewtopic-t-963230.html?sid=c141c20e15e31aab94752fb086dce689
but here is how to patch it copy paste right into the command line. One nice thing about these instructions is that they only patch nvidia-drivers-319.32 and if you forget to take this stuff out nothing bad should happen, as in attempting to patch every version of nvidia-drivers
Code: | # mkdir -p /etc/portage/patches/x11-drivers/nvidia-drivers-319.32
# wget https://bugzilla.kernel.org/attachment.cgi?id=102881 -O /etc/portage/patches/x11-drivers/nvidia-drivers-319.32/Linux-3.10.patch
# perl -pi -e "s/319.17/319.32/g" /etc/portage/patches/x11-drivers/nvidia-drivers-319.32/Linux-3.10.patch |
next you need to put the following inside /etc/portage/bashrc with your favorite text editor, create it if you dont have it
Code: | post_src_unpack() {
if type epatch_user >& /dev/null; then
cd "${S}"
epatch_user
fi
} |
make sure that you have nvidia-drivers-319.32 unmasked in /etc/portage/package.keywords/package.accept_keywords with your favorite text editor, this patch only works with version 319.32
Code: | =x11-drivers/nvidia-drivers-319.32 ~amd64 |
now all you need to do is
Code: | # emerge -av nvidia-drivers |
and everything should work
all thanks should go to the guys in the other post i just combined some things to keep it simple
edit:
works with 3.10.1 _________________ A process cannot be understood by stopping it. Understanding must move with the flow of the process, must join it and flow with it.
-The First Law of Mentat
Last edited by djdunn on Mon Jul 15, 2013 3:20 am; edited 3 times in total |
|
Back to top |
|
 |
HL521 n00b


Joined: 07 Jul 2013 Posts: 1
|
Posted: Sun Jul 07, 2013 5:41 am Post subject: |
|
|
Thank you, djdunn! |
|
Back to top |
|
 |
DawgG l33t


Joined: 17 Sep 2003 Posts: 764
|
Posted: Thu Jul 11, 2013 9:42 am Post subject: |
|
|
THX, worked for me, too. _________________ DUMM KLICKT GUT. |
|
Back to top |
|
 |
Caze n00b

Joined: 16 Apr 2013 Posts: 8
|
Posted: Sun Jul 14, 2013 9:41 pm Post subject: |
|
|
Worked for me.
Original command resulted in HTTP headers going to the file and the actual patch being downloaded to the directory I was in but once I copied it over it worked. Thanks for making this thread. |
|
Back to top |
|
 |
djdunn l33t


Joined: 26 Dec 2004 Posts: 765 Location: Arrakis
|
Posted: Mon Jul 15, 2013 2:38 am Post subject: |
|
|
Caze wrote: | Worked for me.
Original command resulted in HTTP headers going to the file and the actual patch being downloaded to the directory I was in but once I copied it over it worked. Thanks for making this thread. |
Code: | # wget https://bugzilla.kernel.org/attachment.cgi?id=102881 -O /etc/portage/patches/x11-drivers/nvidia-drivers-319.32/Linux-3.10.patch |
that command downloadedto your working directory? _________________ A process cannot be understood by stopping it. Understanding must move with the flow of the process, must join it and flow with it.
-The First Law of Mentat |
|
Back to top |
|
 |
|