diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-06-13 16:31:08 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-06-13 16:31:08 -0400 |
commit | 0a7bb1b3655efcd15b9021d6e0753477d0e991db (patch) | |
tree | 6651a4af5450ea9b25fb786fbf62be9128e2a6e4 | |
parent | f27eacc529529f7a38728db389ce66fba33ef6a9 (diff) |
README: keep the text version of README, discard the sgml version
The linuxdoc doc tool is deprecated.
README files are exclusively text files.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | Makefile.am | 7 | ||||
-rw-r--r-- | README.sgml | 119 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 0 insertions, 128 deletions
diff --git a/Makefile.am b/Makefile.am index 16b2f96..4c278ba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,13 +21,6 @@ SUBDIRS = src man MAINTAINERCLEANFILES = ChangeLog INSTALL - -if BUILD_LINUXDOC -README: README.sgml - $(MAKE_TEXT) README.sgml && mv README.txt README -endif - -EXTRA_DIST = README.sgml .PHONY: ChangeLog INSTALL INSTALL: diff --git a/README.sgml b/README.sgml deleted file mode 100644 index f8fadda..0000000 --- a/README.sgml +++ /dev/null @@ -1,119 +0,0 @@ -<!DOCTYPE linuxdoc PUBLIC "-//Xorg//DTD linuxdoc//EN" [ -<!ENTITY % defs SYSTEM "X11/defs.ent"> %defs; -]> - -<article> -<title> Information for Alliance Promotion chipset users -<author> Loïc Grenié (<url url="mailto:grenie@math.jussieu.fr">), - Henrik Harmsen (<url url="mailto:Henrik.Harmsen@erv.ericsson.se">) -<date> 6 March 2000 -<toc> - -<sect> Support chipsets -<p> -The apm driver in the SVGA server is for Alliance Promotion -graphics chipsets. The following chipsets are supported: - -<itemize> -<item> 6422 - - Old chipset. The driver is still very unstable and has computer - crashes. You should use XFree86 3.3.x for this chipset. - - -<item> AT24 - - As found in Diamond Stealth Video 2500. Quite similar to AT3D. - -<item> AT25, AT3D - - AT3D is found in Hercules Stingray 128/3D. Most other Voodoo - Rush based cards use the AT25 which is identical except it - doesn't have the 3D stuff in it. -</itemize> - -<sect> Acceleration -<p> -The apm driver uses the XAA in the -SVGA server. It has support for the following acceleration: - -<itemize> -<item> Bitblts (rectangle copy operation) -<item> Lines (solid, single pixel) -<item> Filled rectangles -<item> CPU->Screen image transfers. -<item> CPU->Screen colour expansion (text accel). -<item> Screen->Screen colour expansion (cached text accel). -<item> Mono 8x8 pattern fill. Not for 6422. -<item> Colour 8x8 pattern fill (in 8bpp). Not for 6422. -<item> Hardware cursor. -<item> Pixmap caching. -</itemize> - -All in 8, 16 and 32 bpp modes. In 24bpp mode only Bitblts and Filled rectangles -is supported. Also VESA DPMS power save mode is fully supported with "standby", -"suspend" and "off" modes (set with with the "xset dpms" command). - -<sect> DGA -<p> -Full DGA 2.0 support with framebuffer access and drawing acceleration. - -<sect> Video -<p> -It has limited hardware support for video decoding on the AT24 and AT25/3D. It can -also display an image in YUV colours inside the desktop. There are some more exotic -formats such as YUV 4.1.1, YUV 4.0.0 and RGB 8,16.32bpp. - -<sect> Shadow framebuffer -<p> -There is a mode, called shadow framebuffer, where the graphics are used -to display the images. All rendering is done in memory in a so-called shadow -framebuffer. This mode is useful if you need lots of reading in the video -memory and to use it you will have to put -<verb> - Option "ShadowFB" -</verb> - -in your xorg.conf file. - -<sect> Configuration -<p> -First: Run the xorgconfig program to create a correct -configuration. - -You can turn off hardware cursor by inserting the following line in the -Device section of the xorg.conf file: -<verb> - Option "SWcursor" -</verb> - -Or turn off hardware acceleration: -<verb> - Option "noaccel" -</verb> - -Or turn off MMIO - -<verb> - Option "nolinear" -</verb> - -Do not specify either the amount of video RAM or which chipset -in the config file. It is better to let the driver probe for this. Also -don't put any "clocks" line in the device section since these chips have -a fully programmable clock that can almost take any modeline you throw -at it. It might though fail at some specific clock values but in that case -you should just try a slightly different clock and it should work. - -<sect> glide2x -<p> -There is support for the XF86Rush extension for use with the glide2x library. - -<sect> Questions -<p> -Any questions regarding this driver should be sent to Loïc -Grenié. It should be possible to add support for the 3210 chipset -if someone needs it. - - -</article> diff --git a/configure.ac b/configure.ac index cab6ca0..40b13f0 100644 --- a/configure.ac +++ b/configure.ac @@ -74,8 +74,6 @@ PKG_CHECK_MODULES([PCIACCESS], [pciaccess >= 0.8.0]) DRIVER_NAME=apm AC_SUBST([DRIVER_NAME]) -XORG_CHECK_LINUXDOC - AC_OUTPUT([ Makefile src/Makefile |