* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2009-11-30 20:19 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 6+ messages in thread
From: Joshua Saddler (nightmorph) @ 2009-11-30 20:19 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 09/11/30 20:19:35
Modified: dri-howto.xml
Log:
strip out all that nice AGP fastwrite stuff I wrote awhile ago. problem is it's not used on very many chipsets (only r200 and older Radeons, for example), and it is kinda risky. and it's for AGP chipsets, which are positively ancient. also made some misc. edits elsewhere.
Revision Changes Path
1.44 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.43&r2=1.44
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- dri-howto.xml 6 Nov 2008 09:42:02 -0000 1.43
+++ dri-howto.xml 30 Nov 2009 20:19:35 -0000 1.44
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.43 2008/11/06 09:42:02 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.44 2009/11/30 20:19:35 nightmorph Exp $ -->
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<guide link="/doc/en/dri-howto.xml">
+<guide>
<title>Hardware 3D Acceleration Guide</title>
<author title="Author">
- <mail link="dberkholz@gentoo.org">Donnie Berkholz</mail>
+ <mail link="dberkholz"/>
</author>
<author title="Editor">
- <mail link="peesh@gentoo.org">Jorge Paulo</mail>
+ <mail link="peesh"/>
</author>
<author title="Editor">
- <mail link="nightmorph@gentoo.org">Joshua Saddler</mail>
+ <mail link="nightmorph"/>
</author>
<abstract>
@@ -25,8 +25,8 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>1.11</version>
-<date>2008-09-10</date>
+<version>1.12</version>
+<date>2009-11-30</date>
<chapter>
<title>Introduction</title>
@@ -291,111 +291,21 @@
<note>
FPS may be limited by your screen's refresh rate, so keep this in mind if
-<c>glxgears</c> reports only about 70-100 FPS. <c>games-fps/ut2004-demo</c> is a
-better benchmarking tool, as it can give you real-world performance results.
+<c>glxgears</c> reports only about 70-100 FPS. <c>games-fps/ut2004-demo</c> or
+other 3D games are better benchmarking tools, as they give you real-world
+performance results.
</note>
</body>
</section>
-</chapter>
-
-<chapter>
-<title>Tweak your performance</title>
<section>
<title>Get the most out of direct rendering</title>
<body>
<p>
-A few options may increase performance by up to 30 percent (or more) over the
-default. Set them in <path>/etc/X11/xorg.conf</path>. However, you will first
-need to check that your motherboard and video card support these options.
-</p>
-
-<p>
-First, let's see if your video card can support fast writes. We'll do this by
-closely inspecting the output from <c>lspci</c>. Specifically, we are looking
-at the "VGA compatible controller" information.
-</p>
-
-<pre caption="Video card check">
-# <i>lspci -vv</i>
-01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY (prog-if 00 [VGA])
-. . .
-Capabilities: [58] AGP version 2.0
- Status: RQ=48 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW+ AGP3- Rate=x1,x2,x4
-</pre>
-
-<p>
-While quite a lot of information is produced, we are looking for <b>FW</b> in
-the "Status" subsection of the AGP "Capabilities" section. If <b>FW+</b> is
-present in the "Status" line, it means the card supports fast writes. We can
-now check if the motherboard supports fast writes.
-</p>
-
-<impo>
-If you do not see <b>FW+</b>, but instead see <b>FW-</b>, you cannot enable
-fast writes in <path>xorg.conf</path>. Your card does not support fast writes.
-</impo>
-
-<p>
-Now let's make sure the motherboard supports fast writes as well. This time,
-look at the "Host bridge" section of your <c>lspci</c> output.
-</p>
-
-<pre caption="Motherboard check">
-# <i>lspci -vv</i>
-00:00.0 Host bridge: Intel Corporation 82830 830 Chipset Host Bridge (rev 02)
-. . .
-Capabilities: [a0] AGP version 2.0
- Status: RQ=32 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 64bit- FW+ AGP3- Rate=x1,x2,x4
-</pre>
-
-<p>
-Again, examine the "Status" subsection of your AGP "Capabilities" section. Look
-for <b>FW</b>. If you see <b>FW+</b>, your motherboard supports fast writes.
-</p>
-
-<impo>
-Remember, both your video card information and your motherboard information
-must show the same <b>FW</b> capability. If either device shows <b>FW-</b> in
-"Status", you cannot enable fast writes in <path>xorg.conf</path>.
-</impo>
-
-<p>
-Assuming that all has gone well and both your motherboard and video card
-support fast writes, let's enable this option in
-<path>/etc/X11/xorg.conf</path> and get the best performance out of your
-hardware.
-</p>
-
-<pre caption="xorg.conf">
-Section "Device"
- Option "AGPMode" "4"
- <comment>(This increased FPS from 609 to 618.)</comment>
- Option "AGPFastWrite" "True"
- <comment>(This had no measurable effect, but it may increase instability of your computer.)</comment>
- <comment>(You may also need to set it in your BIOS.)</comment>
- Option "EnablePageFlip" "True"
- <comment>(This improved FPS from 618 to 702. It also is "risky" but few people have reported problems.)</comment>
- ...
-EndSection
-</pre>
-
-<warn>
-Enabling <c>AGPFastWrite</c> on a VIA chipset will very likely cause your
-machine to lock up. VIA chipsets do not play nicely with fast writes, so use
-this setting at your own risk.
-</warn>
-
-<note>
-Remember, if you want fast writes to work properly, you will have to first
-enable the appropriate option in your BIOS.
-</note>
-
-<p>
-If you want to set even more features, check out the <uri
-link="http://dri.freedesktop.org/wiki/FeatureMatrix">feature matrix</uri> on
-the DRI web site or the <uri
+If you want to set more features, for performance or other reasons, check out
+the <uri link="http://dri.freedesktop.org/wiki/FeatureMatrix">feature
+matrix</uri> on the DRI web site or the <uri
link="http://dri.sourceforge.net/doc/dri_driver_features.phtml">features
listing</uri> on Sourceforge.
</p>
@@ -475,26 +385,6 @@
</chapter>
<chapter>
-<title>Acknowledgments</title>
-<section>
-<body>
-
-<ol>
- <li>
- Christopher Webber for suggesting a troubleshooting question about changing
- or recompiling kernels
- </li>
- <li>
- Steve, for suggesting consistency between the cases of dri and DRI in
- XF86Config
- </li>
-</ol>
-
-</body>
-</section>
-</chapter>
-
-<chapter>
<title>References</title>
<section>
<body>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2009-12-14 21:26 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 6+ messages in thread
From: Joshua Saddler (nightmorph) @ 2009-12-14 21:26 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 09/12/14 21:26:40
Modified: dri-howto.xml
Log:
Update some links that have been redirected, bug 296922
Revision Changes Path
1.45 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.44&r2=1.45
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- dri-howto.xml 30 Nov 2009 20:19:35 -0000 1.44
+++ dri-howto.xml 14 Dec 2009 21:26:40 -0000 1.45
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.44 2009/11/30 20:19:35 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.45 2009/12/14 21:26:40 nightmorph Exp $ -->
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
<guide>
-
<title>Hardware 3D Acceleration Guide</title>
<author title="Author">
@@ -25,8 +24,8 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>1.12</version>
-<date>2009-11-30</date>
+<version>1.13</version>
+<date>2009-12-14</date>
<chapter>
<title>Introduction</title>
@@ -361,9 +360,8 @@
<p>
Try out the binary drivers. For <c>ati-drivers</c>, a listing is at
-<uri>http://ati.amd.com/support/drivers/linux/linux-radeon.html</uri> (for x86)
-and at <uri>http://ati.amd.com/support/drivers/linux64/linux64-radeon.html</uri>
-(for amd64). If those don't support it, use fbdev. It's slow, but it works.
+<uri>http://support.amd.com/us/gpudownload/Pages/index.aspx</uri>. If those
+don't support it, use fbdev. It's slow, but it works.
</p>
</body>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2011-03-02 7:52 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 6+ messages in thread
From: Joshua Saddler (nightmorph) @ 2011-03-02 7:52 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 11/03/02 07:52:43
Modified: dri-howto.xml
Log:
radeon name changes, nvidia/nouveau corrections, shuffled the feedback section to the end of the doc, and some small guidexml/consistency fixes
Revision Changes Path
1.46 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.45&r2=1.46
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- dri-howto.xml 14 Dec 2009 21:26:40 -0000 1.45
+++ dri-howto.xml 2 Mar 2011 07:52:43 -0000 1.46
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.45 2009/12/14 21:26:40 nightmorph Exp $ -->
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.46 2011/03/02 07:52:43 nightmorph Exp $ -->
<guide>
<title>Hardware 3D Acceleration Guide</title>
@@ -24,8 +24,8 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>1.13</version>
-<date>2009-12-14</date>
+<version>2</version>
+<date>2011-03-01</date>
<chapter>
<title>Introduction</title>
@@ -52,11 +52,12 @@
<body>
<p>
-In many cases, both binary and open-source drivers exist. Open-source drivers
+In many cases, both binary and open-source drivers exist. Open source drivers
are preferable since we're using Linux and open source is one of its underlying
-principles. Sometimes, binary drivers are the only option, like with nVidia's
-cards. Binary drivers include <c>x11-drivers/nvidia-drivers</c> for nVidia cards
-and <c>x11-drivers/ati-drivers</c> for ATI cards.
+principles. Sometimes, binary drivers are the only option, especially if your
+graphics card is so new that open source drivers have not yet been written to
+support its features. Binary drivers include <c>x11-drivers/nvidia-drivers</c>
+for nVidia cards and <c>x11-drivers/ati-drivers</c> for AMD/ATI cards.
</p>
</body>
@@ -100,6 +101,7 @@
<li>3dfx</li>
<li>intel</li>
<li>matrox</li>
+ <li>nouveau</li>
<li>rage128</li>
<li>radeon</li>
<li>mach64</li>
@@ -114,17 +116,6 @@
</body>
</section>
-<section>
-<title>Feedback</title>
-<body>
-
-<p>
-With suggestions, questions, etc., e-mail <mail
-link="dberkholz@gentoo.org">Donnie Berkholz</mail>.
-</p>
-
-</body>
-</section>
</chapter>
<chapter>
@@ -359,8 +350,8 @@
<body>
<p>
-Try out the binary drivers. For <c>ati-drivers</c>, a listing is at
-<uri>http://support.amd.com/us/gpudownload/Pages/index.aspx</uri>. If those
+Try out the binary drivers. For AMD cards, use <c>ati-drivers</c>; a listing is
+at <uri>http://support.amd.com/us/gpudownload/Pages/index.aspx</uri>. If those
don't support it, use fbdev. It's slow, but it works.
</p>
@@ -396,5 +387,15 @@
</body>
</section>
+<section>
+<title>Feedback</title>
+<body>
+
+<p>
+With suggestions, questions, etc., e-mail <mail link="dberkholz"/>.
+</p>
+
+</body>
+</section>
</chapter>
</guide>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2011-03-23 9:26 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 6+ messages in thread
From: Joshua Saddler (nightmorph) @ 2011-03-23 9:26 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 11/03/23 09:26:50
Modified: dri-howto.xml
Log:
add note on the video group, bug 358287
Revision Changes Path
1.47 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.46&r2=1.47
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- dri-howto.xml 2 Mar 2011 07:52:43 -0000 1.46
+++ dri-howto.xml 23 Mar 2011 09:26:50 -0000 1.47
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.46 2011/03/02 07:52:43 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.47 2011/03/23 09:26:50 nightmorph Exp $ -->
<guide>
<title>Hardware 3D Acceleration Guide</title>
@@ -24,8 +24,8 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>2</version>
-<date>2011-03-01</date>
+<version>3</version>
+<date>2011-03-23</date>
<chapter>
<title>Introduction</title>
@@ -195,33 +195,42 @@
</body>
</section>
+<section>
+<title>Add your user to the video group</title>
+<body>
+
+<p>
+Next, add your user(s) to the video group, as explained in the <uri
+link="/doc/en/handbook">handbook</uri>:
+</p>
+
+<pre caption="Adding a user to the video group">
+# <i>gpasswd -a username video</i>
+</pre>
+
+</body>
+</section>
</chapter>
<chapter>
<title>Configure direct rendering</title>
<section id="configure_xorg">
-<title>Configure Xorg.conf</title>
+<title>Configure Xorg</title>
<body>
<p>
-Open <path>/etc/X11/xorg.conf</path> with your favorite text editor and edit
-it to enable DRI and GLX.
+Hopefully just adding your user to the <c>video</c> group is sufficient to
+enable direct rendering. However, you may also need to create a file in
+<path>/etc/X11/xorg.conf.d/</path>. You can name it anything you like; just make
+sure it ends in <path>.conf</path>. Open up your favorite text editor and create
+a file with this inside it:
</p>
-<pre caption="xorg.conf">
-...
-Section "Module"
- Load "dri"
- Load "glx"
- ...
-EndSection
-...
+<pre caption="/etc/X11/xorg.conf.d/10-dri.conf">
Section "Device"
Driver "radeon"
<comment>(Replace radeon with the name of your driver.)</comment>
- ...
EndSection
-...
Section "dri"
Mode 0666
EndSection
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2011-03-23 9:34 Joshua Saddler (nightmorph)
0 siblings, 0 replies; 6+ messages in thread
From: Joshua Saddler (nightmorph) @ 2011-03-23 9:34 UTC (permalink / raw
To: gentoo-doc-cvs
nightmorph 11/03/23 09:34:13
Modified: dri-howto.xml
Log:
some xorg.conf cleanups
Revision Changes Path
1.48 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.47&r2=1.48
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- dri-howto.xml 23 Mar 2011 09:26:50 -0000 1.47
+++ dri-howto.xml 23 Mar 2011 09:34:13 -0000 1.48
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.47 2011/03/23 09:26:50 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.48 2011/03/23 09:34:13 nightmorph Exp $ -->
<guide>
<title>Hardware 3D Acceleration Guide</title>
@@ -24,7 +24,7 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>3</version>
+<version>4</version>
<date>2011-03-23</date>
<chapter>
@@ -371,11 +371,14 @@
<body>
<p>
-Edit <path>/etc/X11/xorg.conf</path>. In section "Device" enable ForcePCIMode.
+Create a config file in <path>/etc/X11/xorg.conf.d/</path>; name it anything you
+want as long as it ends in <path>.conf</path>. Add the following to it:
</p>
-<pre caption="Enabling ForcePCIMode">
-Option "ForcePCIMode" "True"
+<pre caption="/etc/X11/xorg.conf.x/10-pcimode.conf">
+Section "Device"
+ Option "ForcePCIMode" "True"
+EndSection
</pre>
</body>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml
@ 2012-12-25 18:47 Sven Vermeulen (swift)
0 siblings, 0 replies; 6+ messages in thread
From: Sven Vermeulen (swift) @ 2012-12-25 18:47 UTC (permalink / raw
To: gentoo-doc-cvs
swift 12/12/25 18:47:17
Modified: dri-howto.xml
Log:
Fix bug #448438 - remove bad link and typo. Thanks to Francesco Turco for reporting
Revision Changes Path
1.50 xml/htdocs/doc/en/dri-howto.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/dri-howto.xml?r1=1.49&r2=1.50
Index: dri-howto.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- dri-howto.xml 11 Sep 2011 08:43:18 -0000 1.49
+++ dri-howto.xml 25 Dec 2012 18:47:17 -0000 1.50
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.49 2011/09/11 08:43:18 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/dri-howto.xml,v 1.50 2012/12/25 18:47:17 swift Exp $ -->
<guide>
<title>Hardware 3D Acceleration Guide</title>
@@ -24,8 +24,8 @@
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
<license/>
-<version>5</version>
-<date>2011-09-11</date>
+<version>6</version>
+<date>2012-12-25</date>
<chapter>
<title>Introduction</title>
@@ -146,7 +146,7 @@
</pre>
<p>
-If your chipset is not supported by the kernel you might have some succes by
+If your chipset is not supported by the kernel you might have some success by
passing <c>agp=try_unsupported</c> as a kernel parameter. This will use Intel's
generic routines for AGP support. To add this parameter, edit your bootloader
configuration file!
@@ -394,7 +394,6 @@
<li><uri>http://forums.gentoo.org/viewtopic.php?t=46681</uri></li>
<li><uri>http://forums.gentoo.org/viewtopic.php?t=29264</uri></li>
<li><uri>http://dri.freedesktop.org/</uri></li>
- <li><uri>http://www.retinalburn.net/linux/dri_status.html</uri></li>
</ol>
</body>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-12-25 19:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-23 9:26 [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: dri-howto.xml Joshua Saddler (nightmorph)
-- strict thread matches above, loose matches on Subject: below --
2012-12-25 18:47 Sven Vermeulen (swift)
2011-03-23 9:34 Joshua Saddler (nightmorph)
2011-03-02 7:52 Joshua Saddler (nightmorph)
2009-12-14 21:26 Joshua Saddler (nightmorph)
2009-11-30 20:19 Joshua Saddler (nightmorph)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox