From: Aivils S. <ai...@la...> - 2005-01-09 16:12:11
|
Hi All! This is off topic a litle. Under 2.4.29-rc1, 2.4.27 current Nvidia 6629 works for me. But i must disable GLX extension . GLX will work only after patching installation: Remove under 2.4.XX undesired symbolic link # rm /usr/lib/tls/libnvidia-tls.so.1 Create working one # ln -s /usr/lib/libnvidia-tls.so.1.0.6629 /usr/lib/tls/libnvidia-tls.so.1 6629 provide two files libnvidia-tls.so.1.0.6629. Seems only one works under 2.4.XX This simple hack turn on GeForce MX 440, TNT2M64. GeForce FX 5200 (PCI) will not work. Aivils |
From: Jean-Daniel P. <jd...@di...> - 2005-01-10 11:24:48
|
On Sun, 9 Jan 2005, Aivils Stoss wrote: > Hi All! > > =09This is off topic a litle. > Under 2.4.29-rc1, 2.4.27 current Nvidia 6629 works for me. But i must > disable GLX extension . > > GLX will work only after patching installation: > Remove under 2.4.XX undesired symbolic link > # rm /usr/lib/tls/libnvidia-tls.so.1 > Create working one > # ln -s /usr/lib/libnvidia-tls.so.1.0.6629 /usr/lib/tls/libnvidia-tls.so.= 1 > > 6629 provide two files libnvidia-tls.so.1.0.6629. Seems only one works > under 2.4.XX > This simple hack turn on GeForce MX 440, TNT2M64. GeForce FX 5200 > (PCI) will not work. strange indeed, on my machine both my MX440 and my Ti4200 are handled perfectly with the default-installed libs ? -- Jean-Daniel Pauget T=E9l: +33 (0) 676 952 746 2, rue Andr=E9 PELCA 50580 Denneville-Plage France |
From: Hugo V. <hvw...@ya...> - 2005-01-10 12:59:56
|
--- Jean-Daniel Pauget <jd...@di...> wrote: > On Sun, 9 Jan 2005, Aivils Stoss wrote: > > > Hi All! > > > > This is off topic a litle. > > Under 2.4.29-rc1, 2.4.27 current Nvidia 6629 works > for me. But i must > > disable GLX extension . > > > > GLX will work only after patching installation: > > Remove under 2.4.XX undesired symbolic link > > # rm /usr/lib/tls/libnvidia-tls.so.1 > > Create working one > > # ln -s /usr/lib/libnvidia-tls.so.1.0.6629 > /usr/lib/tls/libnvidia-tls.so.1 > > > > 6629 provide two files libnvidia-tls.so.1.0.6629. > Seems only one works > > under 2.4.XX > > This simple hack turn on GeForce MX 440, TNT2M64. > GeForce FX 5200 > > (PCI) will not work. > > strange indeed, on my machine both my MX440 and > my Ti4200 are handled > perfectly with the default-installed libs ? > And 6629 would not work with my TNT2 AGP card so I went back to 6111. At the time it was noted in the nVidia Linux forum. H. __________________________________ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. http://promotions.yahoo.com/new_mail |
From: Hugo V. <hvw...@ya...> - 2005-01-18 21:59:31
|
I knew everybody was waiting with baited breath for vcstime (vcstime - Show time in upper right hand corner of the console screen) to run again after that success with the pc speaker! This is the patch on top of Jean-Daniel's 2.4.29-rc2 patch: diff -Naur linux-2.4.29/drivers/char/vc_screen.c linux-2.4.29-vcstime/drivers/char/vc_screen.c --- linux-2.4.29/drivers/char/vc_screen.c 2005-01-18 15:20:58.000000000 -0600 +++ linux-2.4.29-vcstime/drivers/char/vc_screen.c 2005-01-18 15:18:41.000000000 -0600 @@ -493,7 +493,7 @@ buf += orig_count; pos += orig_count; if (org0) - update_region(currcons, (unsigned long)(org0), org-org0); + update_region(vc, (unsigned long)(org0), org-org0); /*HVW*/ } *ppos = pos; ret = written; @@ -511,7 +511,9 @@ { unsigned int currcons = (MINOR(inode->i_rdev) & 127); struct vc_data *vc; - + ++currcons; /*HVW*/ +/* if vc#0 has minor 128 then currcons ends up 0 */ +/* in that case vc is not set up and things blow */ if (currcons) { vc = find_vc(currcons-1); if (vc) In Debian Sarge, because I have svgatextmode installed I had to start vcstime separately after console-screen and not with console-screen's config because it would write to the screen in two places. vcstime puts the tod in the right upper corner of all the vc's. The program mentioned here: http://www.icewalkers.com/Linux/ManPages/vcsa-4.html now also works as an example of screen attribute changes. Hugo __________________________________ Do you Yahoo!? Yahoo! Mail - You care about security. So do we. http://promotions.yahoo.com/new_mail |
From: Jean-Daniel P. <jd...@di...> - 2005-01-20 18:31:33
|
On Tue, 18 Jan 2005, Hugo Vanwoerkom wrote: > This is the patch on top of Jean-Daniel's 2.4.29-rc2 > patch: seems ok for me, I added it in 2.4.29-bruby. you may test and validate. http://disjunkt.com/dualhead/bruby-2.4.29-20050120.bz2 -- Jean-Daniel Pauget T=E9l: +33 (0) 676 952 746 2, rue Andr=E9 PELCA 50580 Denneville-Plage France |