[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#332548: Summary



> Older driver code should still work with the current server code.
> http://cvs.freedesktop.org/xorg/driver/xf86-video-ati/
> Note that in order to build this, you'll need xserver-xorg-dev from
> experimental or Ubuntu dapper, or to build xserver CVS yourself.

I've been having a horrible time trying to get a copy from CVS to work.

I'm using Debian Testing.

I grabbed the 12/20/05 version of the driver from cvs (I think this should correspond to 6.9.0):
 'cvs -d :pserver:anoncvs@cvs.freedesktop.org:/cvs/xorg co -D "2005-12-20" driver/xf86-video-ati'
I installed the autoconf2.13 and libtool packages.

I ran 'sh autogen.sh':
~/driver/xf86-video-ati$ sh autogen.sh 
autoreconf2.50: Entering directory `.'
autoreconf2.50: configure.ac: not using Gettext
autoreconf2.50: running: aclocal  --output=aclocal.m4t
autoreconf2.50: `aclocal.m4' is created
autoreconf2.50: configure.ac: tracing
autoreconf2.50: running: libtoolize --copy
autoreconf2.50: `aclocal.m4' is unchanged
autoreconf2.50: running: /usr/bin/autoconf
autoreconf2.50: running: /usr/bin/autoheader
autoreconf2.50: running: automake --add-missing --copy
automake: configure.ac: installing `./install-sh'
automake: configure.ac: installing `./mkinstalldirs'
automake: configure.ac: installing `./missing'
Makefile.am:24: BUILD_LINUXDOC does not appear in AM_CONDITIONAL
configure.ac: 30: required file `./[config.h].in' not found
src/Makefile.am:37: invalid unused variable name: `ATIMISC_CPIO_SOURCES'
src/Makefile.am:41: invalid unused variable name: `ATIMISC_DGA_SOURCES'
src/Makefile.am:36: invalid unused variable name: `ATI_CPIO_SOURCES'
autoreconf2.50: automake failed with exit status: 1
~/driver/xf86-video-ati$

I spent a lot of time trying to figure out how to fix automake, but I didn't really get anywhere, so I eventually gave up and just ran './configure':
[...]
./configure: line 18921: syntax error near unexpected token `XINERAMA,'
./configure: line 18921: `XORG_DRIVER_CHECK_EXT(XINERAMA, xineramaproto)'
~/driver/xf86-video-ati$

I couldn't figure out what this was all about, so I commented out all the lines in configure containing XORG_DRIVER_CHECK_EXT or PKG_CHECK_MODULES and ran './configure' again:
[...]
checking whether to include TV Out support... yes
./configure: line 19353: XORG_MANPAGE_SECTIONS: command not found
./configure: line 19354: XORG_RELEASE_VERSION: command not found
./configure: line 19355: XORG_CHECK_LINUXDOC: command not found
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating man/Makefile
config.status: creating config.h
config.status: executing default-1 commands
~/driver/xf86-video-ati$

Alright, atleast it created the Makefiles this time.
'cd src'
'make'
...make wasn't able to find the xorg header files...

So, I checked in Debian Experimental, but didn't find an xserver-xorg-dev package.  I went to ubuntu and manually downloaded and installed the xserver-xorg-dev package instead.  I later found I needed a bunch of the x11proto-<something>-dev packages as well; I installed core, fonts, xext, xf86misc, video, xinerama, render, randr, xf86dri, and gl from http://packages.ubuntu.com/dapper/x11/
dpkg wasn't very happy about installing the X7.0 dev package on a system running X6.9, so I just used 'dpkg -i --force-depends <package>.deb'
I also installed the mesa-common-dev, libdrm-dev, and libdrm2 packages from Debian.
Then I ran 'make' again
...and make still wasn't able to find the xorg header files...

So, rather than mucking with the make file, I just copied all the xorg headers to the src directory:
'cp /usr/include/xorg/* .'
'cp -R /usr/X11R6/include/X11/ .'
'cp /usr/X11R6/include/X11/dri/* .'
'cp /usr/include/drm/* .'

I also had to add this to the beginning of radeon_accel.c:
#define errno xf86errno
#define EBUSY xf86_EBUSY

and this to the beginning of r128_accel.c:
extern int xf86errno;
#define errno xf86errno
#define EBUSY 1022
#define EAGAIN 1002

I ran 'make' again, and FINALLY, everything compiled!  *whew*

'su'
'make install'
...this installed the driver in /usr/local/lib/xorg/modules/drivers/radeon_drv.so
'cd /usr/X11R6/lib/modules/drivers'
'mv radeon_drv.so radeon_drv.so.orig'
I wasn't sure if libtool did anything special to the driver when installing it, so I edited radeon_drv.la - libdir='/usr/X11R6/lib/modules/drivers' - then ran:
'libtool --mode=install install -c radeon_drv.la /usr/X11R6/lib/modules/drivers/radeon_drv.la'
Now the driver should be in the right place.

Restarted X ... and ... *drum roll* ...
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.so
dlopen: /usr/X11R6/lib/modules/drivers/radeon_drv.so: undefined symbol: gRADEONEntityIndex
(EE) Failed to load /usr/X11R6/lib/modules/drivers/radeon_drv.so
(II) UnloadModule: "radeon"
(EE) Failed to load module "radeon" (loader failed, 7)

The full Xorg log file is attached.  By this point, I had already spent some hours banging my head on the desk trying to get everything working, so I decided to start over with the 6.8.2 driver and see if I could get any further with that.

I grabbed the 2/17/05 version of the driver from cvs (I think this should correspond to 6.8.2):
 'cvs -d :pserver:anoncvs@cvs.freedesktop.org:/cvs/xorg co -D "2005-02-17" driver/xf86-video-ati'

I had to go through a bunch of hastle to get this one compiled as well - unfortunately, I didn't take as good notes on this one, but the end result here was:
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.so
(EE) LoadModule: Module radeon does not have a radeonModuleData data object.
(II) UnloadModule: "radeon"

Again, full Xorg log file is attached.

Unfortunately, now I've run out of time and I have to stop playing with this for a little while.

If you know of a step-by-step procedure I can follow to just make this work (so I can just pick a bunch of cvs revisions and try them), that would be ideal.  Otherwise, it might be a long while before I have another day to spend banging my head on the desk trying to make the cvs source work.

-Paul
X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-4 20060114230205 David Nusinow <dnusinow@debian.org>)
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.15-1-686 i686 [ELF] 
Current Operating System: Linux psd 2.6.15-1-686-smp #2 SMP Thu Feb 2 18:39:24 UTC 2006 i686
Build Date: 14 January 2006
	Before reporting problems, check http://wiki.X.Org
	to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.15-1-686-smp (Debian 2.6.15-4) (maks@sternwelten.at) (gcc version 4.0.3 20060128 (prerelease) (Debian 4.0.2-8)) #2 SMP Thu Feb 2 18:39:24 UTC 2006 T
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 17 16:02:09 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Screen 0" (0)
(**) |   |-->Monitor "1905FP"
(**) |   |-->Device "Video 0"
(**) |-->Screen "Screen 1" (1)
(**) |   |-->Monitor "1905FP"
(**) |   |-->Device "Video 1"
(**) |-->Input Device "Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "dvorak"
(**) XKB: layout: "dvorak"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Mouse"
(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
	Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
	Entry deleted from font path.
(**) FontPath set to "/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "Xinerama" "on"
(**) Xinerama: enabled
(II) Open ACPI successful (/proc/acpi/event)
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.2
	X.Org Video Driver: 0.8
	X.Org XInput driver : 0.5
	X.Org Server Extension : 0.2
	X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2580 card 1028,0179 rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2581 card 0000,0000 rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1c:0: chip 8086,2660 card 0000,0000 rev 03 class 06,04,00 hdr 81
(II) PCI: 00:1c:1: chip 8086,2662 card 0000,0000 rev 03 class 06,04,00 hdr 81
(II) PCI: 00:1d:0: chip 8086,2658 card 1028,0179 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2659 card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,265a card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,265b card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,265c card 1028,0179 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev d3 class 06,04,01 hdr 81
(II) PCI: 00:1e:2: chip 8086,266e card 1028,0179 rev 03 class 04,01,00 hdr 00
(II) PCI: 00:1f:0: chip 8086,2640 card 0000,0000 rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,266f card 1028,0179 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:2: chip 8086,2651 card 1028,0179 rev 03 class 01,01,8f hdr 00
(II) PCI: 00:1f:3: chip 8086,266a card 1028,0179 rev 03 class 0c,05,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5b60 card 1002,0402 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5b70 card 1002,0403 rev 00 class 03,80,00 hdr 00
(II) PCI: 02:00:0: chip 14e4,1677 card 1028,0179 rev 01 class 02,00,00 hdr 00
(II) PCI: 04:00:0: chip 10de,0326 card 0000,0000 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,4), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xdfd00000 - 0xdfefffff (0x200000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:28:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0xdfc00000 - 0xdfcfffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:28:1), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 3 non-prefetchable memory range:
	[0] -1	0	0xdfb00000 - 0xdfbfffff (0x100000) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:30:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 4 non-prefetchable memory range:
	[0] -1	0	0xde000000 - 0xdfafffff (0x1b00000) MX[B]
(II) Bus 4 prefetchable memory range:
	[0] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] rev 0, Mem @ 0xc8000000/27, 0xdfde0000/16, I/O @ 0xdc00/8, BIOS @ 0xdfe00000/17
(--) PCI: (1:0:1) ATI Technologies Inc RV370 [Radeon X300SE] rev 0, Mem @ 0xdfdf0000/16
(--) PCI: (4:0:0) nVidia Corporation NV34 [GeForce FX 5500] rev 161, Mem @ 0xde000000/24, 0xd0000000/27, BIOS @ 0xdfa00000/17
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
	[0] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[1] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[2] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[3] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[4] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[5] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[6] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[7] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[8] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[9] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[10] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[11] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[12] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[13] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[14] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[15] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[16] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[17] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[18] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[19] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[20] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[21] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[22] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[23] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[24] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[25] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) Inactive PCI resource ranges:
	[0] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[1] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[2] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[1] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[2] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[3] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[4] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[5] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[6] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[7] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[8] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[9] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[10] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[11] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[12] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[13] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[14] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[15] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[16] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[17] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[18] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[19] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[20] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[21] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[22] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[23] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[24] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[25] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) Inactive PCI resource ranges after removing overlaps:
	[0] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[1] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[2] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[6] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[7] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[8] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[9] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[10] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[11] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[12] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[13] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[15] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
	[16] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[17] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[18] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[19] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[20] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[21] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[22] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[23] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[24] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[25] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[26] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[27] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[28] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[29] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[30] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[31] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[32] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[33] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[34] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[35] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
	compiled for 6.9.0, module version = 2.1.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.8178
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.so
(II) Module int10: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.1.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.so
(EE) LoadModule: Module radeon does not have a radeonModuleData data object.
(II) UnloadModule: "radeon"
(II) Unloading /usr/X11R6/lib/modules/drivers/radeon_drv.so
(EE) Failed to load module "radeon" (invalid module, 0)
(II) LoadModule: "keyboard"
(II) Loading /usr/X11R6/lib/modules/input/keyboard_drv.so
(II) Module keyboard: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.3
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(EE) No drivers available.

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
	 at http://wiki.X.Org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-4 20060114230205 David Nusinow <dnusinow@debian.org>)
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.15-1-686 i686 [ELF] 
Current Operating System: Linux psd 2.6.15-1-686-smp #2 SMP Thu Feb 2 18:39:24 UTC 2006 i686
Build Date: 14 January 2006
	Before reporting problems, check http://wiki.X.Org
	to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.15-1-686-smp (Debian 2.6.15-4) (maks@sternwelten.at) (gcc version 4.0.3 20060128 (prerelease) (Debian 4.0.2-8)) #2 SMP Thu Feb 2 18:39:24 UTC 2006 T
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 17 17:40:35 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Screen 0" (0)
(**) |   |-->Monitor "1905FP"
(**) |   |-->Device "Video 0"
(**) |-->Input Device "Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "dvorak"
(**) XKB: layout: "dvorak"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Mouse"
(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
	Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
	Entry deleted from font path.
(**) FontPath set to "/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "Xinerama" "on"
(**) Xinerama: enabled
(II) Open ACPI successful (/proc/acpi/event)
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.2
	X.Org Video Driver: 0.8
	X.Org XInput driver : 0.5
	X.Org Server Extension : 0.2
	X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2580 card 1028,0179 rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2581 card 0000,0000 rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1c:0: chip 8086,2660 card 0000,0000 rev 03 class 06,04,00 hdr 81
(II) PCI: 00:1c:1: chip 8086,2662 card 0000,0000 rev 03 class 06,04,00 hdr 81
(II) PCI: 00:1d:0: chip 8086,2658 card 1028,0179 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2659 card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,265a card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,265b card 1028,0179 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,265c card 1028,0179 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev d3 class 06,04,01 hdr 81
(II) PCI: 00:1e:2: chip 8086,266e card 1028,0179 rev 03 class 04,01,00 hdr 00
(II) PCI: 00:1f:0: chip 8086,2640 card 0000,0000 rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,266f card 1028,0179 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:2: chip 8086,2651 card 1028,0179 rev 03 class 01,01,8f hdr 00
(II) PCI: 00:1f:3: chip 8086,266a card 1028,0179 rev 03 class 0c,05,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5b60 card 1002,0402 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5b70 card 1002,0403 rev 00 class 03,80,00 hdr 00
(II) PCI: 02:00:0: chip 14e4,1677 card 1028,0179 rev 01 class 02,00,00 hdr 00
(II) PCI: 04:00:0: chip 10de,0326 card 0000,0000 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,4), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xdfd00000 - 0xdfefffff (0x200000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:28:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0xdfc00000 - 0xdfcfffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:28:1), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 3 non-prefetchable memory range:
	[0] -1	0	0xdfb00000 - 0xdfbfffff (0x100000) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:30:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 4 non-prefetchable memory range:
	[0] -1	0	0xde000000 - 0xdfafffff (0x1b00000) MX[B]
(II) Bus 4 prefetchable memory range:
	[0] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] rev 0, Mem @ 0xc8000000/27, 0xdfde0000/16, I/O @ 0xdc00/8, BIOS @ 0xdfe00000/17
(--) PCI: (1:0:1) ATI Technologies Inc RV370 [Radeon X300SE] rev 0, Mem @ 0xdfdf0000/16
(--) PCI: (4:0:0) nVidia Corporation NV34 [GeForce FX 5500] rev 161, Mem @ 0xde000000/24, 0xd0000000/27, BIOS @ 0xdfa00000/17
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
	[0] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[1] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[2] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[3] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[4] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[5] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[6] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[7] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[8] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[9] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[10] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[11] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[12] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[13] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[14] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[15] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[16] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[17] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[18] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[19] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[20] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[21] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[22] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[23] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[24] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[25] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) Inactive PCI resource ranges:
	[0] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[1] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[2] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[1] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[2] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[3] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[4] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[5] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[6] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[7] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[8] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[9] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[10] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[11] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[12] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[13] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[14] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[15] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[16] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[17] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[18] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[19] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[20] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[21] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[22] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[23] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[24] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[25] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) Inactive PCI resource ranges after removing overlaps:
	[0] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[1] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[2] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xdfcf0000 - 0xdfcfffff (0x10000) MX[B]
	[6] -1	0	0xdffffd00 - 0xdffffdff (0x100) MX[B]
	[7] -1	0	0xdffffe00 - 0xdfffffff (0x200) MX[B]
	[8] -1	0	0xffa80800 - 0xffa80bff (0x400) MX[B]
	[9] -1	0	0xdfdf0000 - 0xdfdfffff (0x10000) MX[B](B)
	[10] -1	0	0xdfe00000 - 0xdfe1ffff (0x20000) MX[B](B)
	[11] -1	0	0xdfde0000 - 0xdfdeffff (0x10000) MX[B](B)
	[12] -1	0	0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
	[13] -1	0	0xdf000000 - 0xdf01ffff (0x20000) MX[B](B)
	[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[15] -1	0	0xde000000 - 0xdeffffff (0x1000000) MX[B](B)
	[16] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[17] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[18] -1	0	0x0000e8a0 - 0x0000e8bf (0x20) IX[B]
	[19] -1	0	0x0000fea0 - 0x0000feaf (0x10) IX[B]
	[20] -1	0	0x0000fe30 - 0x0000fe33 (0x4) IX[B]
	[21] -1	0	0x0000fe20 - 0x0000fe27 (0x8) IX[B]
	[22] -1	0	0x0000fe10 - 0x0000fe13 (0x4) IX[B]
	[23] -1	0	0x0000fe00 - 0x0000fe07 (0x8) IX[B]
	[24] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
	[25] -1	0	0x00000374 - 0x00000374 (0x1) IX[B]
	[26] -1	0	0x00000170 - 0x00000170 (0x1) IX[B]
	[27] -1	0	0x000003f4 - 0x000003f4 (0x1) IX[B]
	[28] -1	0	0x000001f0 - 0x000001f0 (0x1) IX[B]
	[29] -1	0	0x0000e8c0 - 0x0000e8ff (0x40) IX[B]
	[30] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]
	[31] -1	0	0x0000ff20 - 0x0000ff3f (0x20) IX[B]
	[32] -1	0	0x0000ff40 - 0x0000ff5f (0x20) IX[B]
	[33] -1	0	0x0000ff60 - 0x0000ff7f (0x20) IX[B]
	[34] -1	0	0x0000ff80 - 0x0000ff9f (0x20) IX[B]
	[35] -1	0	0x0000dc00 - 0x0000dcff (0x100) IX[B](B)
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
	compiled for 6.9.0, module version = 2.1.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.8178
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.so
(II) Module int10: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.1.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.so
dlopen: /usr/X11R6/lib/modules/drivers/radeon_drv.so: undefined symbol: gRADEONEntityIndex
(EE) Failed to load /usr/X11R6/lib/modules/drivers/radeon_drv.so
(II) UnloadModule: "radeon"
(EE) Failed to load module "radeon" (loader failed, 7)
(II) LoadModule: "keyboard"
(II) Loading /usr/X11R6/lib/modules/input/keyboard_drv.so
(II) Module keyboard: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 6.9.0, module version = 1.0.3
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(EE) No drivers available.

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
	 at http://wiki.X.Org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.


Reply to: