$FreeBSD$
UPDATE: nVidia has just released their native drivers for FreeBSD! I have tested them on my Dell 8100 with GeForce 2 Go card, and it is beautiful. Download the drivers from http://www.nvidia.com/content/drivers/drivers.asp. For those still wanting to do the XFree86 native way, read on.
Some newer desktops and laptops like the Dell Inspiron 8100 ship with the nVidia GeForce2 Go video card or GeForce4-based cards. As of XFree86 4.2.0, this card is only supported in 16-bit mode using the vesa driver. Alternatively, a binary-only driver is available from http://nvidia.netexplorer.org/download.html. However, this driver has been problematic for some users.
Fortunately, Mark Vojkovich of the XFree86 core team committed some patches to CVS to add GeForce2 Go support into the standard XFree nv driver. This article will explain how to install this new nv driver, and configure X to support the nVidia GeForce2 Go or GeForce4.
First, you must have an up-to-date ports tree on your machine. You will be rebuilding your x11-servers/XFree86-4-Server port.
Once your have your ports tree up-to-date, download the new driver source code here. These patches only apply to XFree86-Server-4.2.0 or higher. They will not apply to 4.1.0 or lower.
Building the new driver requires you to rebuild the x11-servers/XFree86-4-Server port. NOTE: you must have the rest of XFree86 built prior to rebuilding XFree86-4-Server.
# cd /usr/ports/x11-servers/XFree86-4-Server # make clean # make patch # cd work # tar -xzf /path/to/nv.tar.gz # cd .. # make all
If you already have XFree86-4-Server installed, be sure to uninstall it before reinstalling the new version.
# make deinstall # make reinstall
If this is a new installation of XFree86-4-Server, then simply install the port normally after the build completes.
# make install
After the new driver is installed, X must be configured to use it. Since we're using the standard nv driver that ships with XFree86 4.x, it should be automatically used by programs like xf86cfg. Make sure you have a section in your XF86Config[-4] like the following.
Section "Device" Driver "nv" ... EndSection
Here is a sample XF86Config I use with my Dell Inspiron 8100.
While the author of these patches says this should work on a variety of computer models, I have only personally tested on my Dell Inspiron 8100 with the GeForce2 Go. Other users have reported success with the Toshiba 3000-514 and Toshiba 3005-514,and one GeForce4 user with a GeForce4 MX 440. YMMV.
Selecting a mode less than 1600x1200 had the effect of simply reducing the screen size. That is, the edges of the screen were black. Only in 1600x1200 was the full screen used. JJ Behrens <jj@nttmcl.com> reports that using the Fn+F7 key corrects this problem on the Dell Inspiron 8100. I have not tested this myself as I rather enjoy the crisp 1600x1200 resolution ;-). Thanks, JJ!
Credit for the GeForce2 Go patch goes to Mark Vojkovich <mvojkovi@xfree86.org> from the XFree86 core team. The code also contains contributions from other XFree86 developers. See the nv(4) manpage for the complete list of authors that have contributed to this code.
This, and other documents, can be downloaded from ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/.
For questions about FreeBSD, read the
documentation
before contacting <questions@FreeBSD.org>.
For questions about this documentation, e-mail <doc@FreeBSD.org>.