Hello everyone

Trying to get the xserver (Knoppix 3.8 XFree86 4.3.0.1) over framebuffer. The hw is the following:

0000:00:02.0 VGA compatible controller: Intel Corp. 82852/855GM Integrated Graphics Device (rev 02) 0000:00:02.1 Display controller: Intel Corp. 82852/855GM Integrated Graphics Device (rev 02)

(btw, why do I get 2?) If I try he intelfb kernel driver, I get

intelfb: intelfb_init
intelfb: Framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G 
chipsets
intelfb: Version 0.9.2
intelfb: intelfb_setup
intelfb: no options
intelfb: intelfb_pci_register
intelfb: fb aperture: 0xd8000000/0x8000000, MMIO region: 0xe8180000/0x80000
intelfb: 00:02.0: Intel(R) 855GME, aperture size 128MB, stolen memory 32636kB
intelfb: fb: 0xdb012000(+ 0x3012)/0x400000 (0xd1992000)
intelfb: MMIO: 0xe8180000/0x80000 (0xd1e00000)
intelfb: ring buffer: 0xdb001000/0x10000 (0xd1981000)
intelfb: HW cursor: 0xdd24000/0x1000 (0xd1991000) (offset 0x3011) (phys 
0xdd24000)
intelfb: options: vram = 4, accel = 1, hwcursor = 1, fixed = 0, noinit = 0
intelfb: options: mode = ""
intelfb: Non-CRT device is enabled ( LVDS port ).  Disabling mode switching.
intelfb: Video mode must be programmed at boot time.
intelfb: cleanup

I tried setting "vga=..." - no way. With vga16fb I can boot with the framebuffer, i.e. it will be used by the console, but I cannot get X running over it. I can run it over i810 X driver, but I need fb... XF86Config-4 (BusID under "Card1" is just a test - tried without any too) and XFree86.0.log attached.

BTW, the reason why I want to run X over fb is, that I need to use touchscreen, about which I read in a HowTo, that it only works if X runs over fb, is it still true?

Any hints would be greatly appreciated
Thanks in advance
Guennadi
---------------------------------
Guennadi Liakhovetski, Ph.D.
DSA Daten- und Systemtechnik GmbH
Pascalstr. 28
D-52076 Aachen
Germany
Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
# PS/2 Mouse using /dev/input/mice in Kernel 2.6
# Serial Mouse not detected
        InputDevice    "USB Mouse" "CorePointer"
#       InputDevice    "touchscreen" "CorePointer"
EndSection

Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
        
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc:unscaled"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi"
        FontPath     "/usr/X11R6/lib/X11/fonts/Speedo"
        FontPath     "/usr/X11R6/lib/X11/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
        FontPath     "/usr/X11R6/lib/X11/fonts/cyrillic"
#       FontPath     "/usr/X11R6/lib/X11/fonts/latin2/75dpi"
#       FontPath     "/usr/X11R6/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1"
        FontPath     "/usr/share/fonts/ttf/western"
        FontPath     "/usr/share/fonts/ttf/decoratives"
        FontPath     "/usr/share/fonts/truetype"
        FontPath     "/usr/share/fonts/truetype/openoffice"
        FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
        FontPath     "/usr/share/fonts/latex-ttf-fonts"
        FontPath     "/usr/X11R6/lib/X11/fonts/defoma/CID"
        FontPath     "/usr/X11R6/lib/X11/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
        Load  "GLcore"
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "int10"
        Load  "glx"
        Load  "bitmap" # bitmap-fonts
        Load  "speedo"
        Load  "type1"
        Load  "freetype"
        Load  "record"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
#       Driver      "keyboard"
        Driver      "kbd"
        Option      "CoreKeyboard"
        Option "XkbRules" "xfree86"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "us"
#       Option "XkbVariant" "nodeadkeys"
EndSection

Section "InputDevice"
        Identifier  "Serial Mouse"
        Driver      "mouse"
        Option      "Protocol" "Microsoft"
        Option      "Device" "/dev/ttyS0"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option      "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier  "touchscreen"
        Driver      "summa"
        Option      "Device" "/dev/input/ts0"
        Option          "Cursor" "stylus"
        Option      "Mode" "absolute"
        Option      "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
Option          "ZAxisMapping"          "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option      "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
        Option          "SendCoreEvents"        "true"
        Option          "Protocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

# Auto-generated by KNOPPIX mkxf86config

Section "Monitor"
        Identifier      "Monitor0"
#       Option  "DPMS"  "true"
        VendorName      "SNY"
        ModelName       "SNY0550"
        HorizSync 27 - 86 # DDC-probed
        VertRefresh 50 - 160 # DDC-probed
        # These are the DDC-probed settings reported by your monitor.
        # 1280x1024, 75.0Hz; hfreq=79.98, vfreq=75.03
#       ModeLine "1280x1024"    135.00 1280 1296 1440 1688 1024 1025 1028 1066 
+hsync +vsync
        # 1024x768, 75.0Hz; hfreq=60.02, vfreq=75.03
#       ModeLine "1024x768"      78.75 1024 1040 1136 1312  768  769  772  800 
+hsync +vsync
        # 1024x768, 70.0Hz; hfreq=56.48, vfreq=70.07
#       ModeLine "1024x768"      75.00 1024 1048 1184 1328  768  771  777  806 
-hsync -vsync
        # 1024x768, 60.0Hz; hfreq=48.36, vfreq=60.00
#       ModeLine "1024x768"      65.00 1024 1048 1184 1344  768  771  777  806 
-hsync -vsync
        # 800x600, 85.0Hz; hfreq=53.67, vfreq=85.06
#       ModeLine "800x600"       56.25  800  832  896 1048  600  601  604  631 
+hsync +vsync
        # 800x600, 75.0Hz; hfreq=46.88, vfreq=75.00
#       ModeLine "800x600"       49.50  800  816  896 1056  600  601  604  625 
+hsync +vsync
        # 800x600, 60.0Hz; hfreq=37.88, vfreq=60.32
#       ModeLine "800x600"       40.00  800  840  968 1056  600  601  605  628 
+hsync +vsync
        # 800x600, 56.0Hz; hfreq=35.16, vfreq=56.25
#       ModeLine "800x600"       36.00  800  824  896 1024  600  601  603  625 
+hsync +vsync
        # 640x480, 85.0Hz; hfreq=43.27, vfreq=85.01
#       ModeLine "640x480"       36.00  640  696  752  832  480  481  484  509 
-hsync -vsync
        # 640x480, 75.0Hz; hfreq=37.50, vfreq=75.00
#       ModeLine "640x480"       31.50  640  656  720  840  480  481  484  500 
-hsync -vsync
        # 640x480, 72.0Hz; hfreq=37.86, vfreq=72.81
#       ModeLine "640x480"       31.50  640  656  696  816  480  481  484  504 
-hsync -vsync
        # 640x480, 60.0Hz; hfreq=31.47, vfreq=59.94
#       ModeLine "640x480"       25.17  640  648  744  784  480  482  484  509 
-hsync -vsync
        # Extended modelines with GTF timings
        # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
#       ModeLine "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync 
+Vsync
        # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
#       ModeLine "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync 
+Vsync
        # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
#       ModeLine "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync 
+Vsync
        # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
#       ModeLine "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync 
+Vsync
        # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
#       ModeLine "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync 
+Vsync
        # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
#       ModeLine "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync 
+Vsync
        # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
#       ModeLine "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync 
+Vsync
        # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
#       ModeLine "1024x768"  113.31  1024 1096 1208 1392  768 769 772 814  
-HSync +Vsync
        # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
#       ModeLine "1152x864"  81.62  1152 1216 1336 1520  864 865 868 895  
-HSync +Vsync
        # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
#       ModeLine "1152x864"  119.65  1152 1224 1352 1552  864 865 868 907  
-HSync +Vsync
        # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
#       ModeLine "1152x864"  143.47  1152 1232 1360 1568  864 865 868 915  
-HSync +Vsync
        # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
#       ModeLine "1280x960"  124.54  1280 1368 1504 1728  960 961 964 1001  
-HSync +Vsync
        # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
#       ModeLine "1280x960"  129.86  1280 1368 1504 1728  960 961 964 1002  
-HSync +Vsync
        # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
#       ModeLine "1280x960"  178.99  1280 1376 1520 1760  960 961 964 1017  
-HSync +Vsync
        # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
#       ModeLine "1280x1024"  190.96  1280 1376 1520 1760  1024 1025 1028 1085  
-HSync +Vsync
        # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
#       ModeLine "1400x1050"  122.61  1400 1488 1640 1880  1050 1051 1054 1087  
-HSync +Vsync
        # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
#       ModeLine "1400x1050"  149.34  1400 1496 1648 1896  1050 1051 1054 1094  
-HSync +Vsync
        # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
#       ModeLine "1400x1050"  155.85  1400 1496 1648 1896  1050 1051 1054 1096  
-HSync +Vsync
        # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
#       ModeLine "1400x1050"  179.26  1400 1504 1656 1912  1050 1051 1054 1103  
-HSync +Vsync
        # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
#       ModeLine "1400x1050"  214.39  1400 1512 1664 1928  1050 1051 1054 1112  
-HSync +Vsync
        # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
#       ModeLine "1600x1200"  280.64  1600 1728 1904 2208  1200 1201 1204 1271  
-HSync +Vsync
EndSection

Section "Device"
        ### Available Driver options are:-
# sw_cursor is needed for some ati and radeon cards
        #Option     "sw_cursor"
        #Option     "hw_cursor"
        #Option     "NoAccel"
        #Option     "ShowCache"
        Option     "ShadowFB"
        Option     "UseFBDev"
        #Option     "Rotate"
        Identifier  "Card0"
# The following line is auto-generated by KNOPPIX mkxf86config
        Driver      "i810"
        VendorName  "All"
        BoardName   "All"
#       BusID       "PCI:1:0:1"
EndSection

Section "Device"
        Identifier      "Card1"
        Driver          "fbdev"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card1"
        Monitor    "Monitor0"
        DefaultColorDepth 8
#       SubSection "Display"
#               Depth     1
#               Modes "1024x768" "800x600" "640x480"
#       EndSubSection
#       SubSection "Display"
#               Depth     4
#               Modes "1024x768" "800x600" "640x480"
#       EndSubSection
        SubSection "Display"
                Depth     8
#               Modes "1024x768" "800x600" "640x480"
                Modes "640x480"
        EndSubSection
#       SubSection "Display"
#               Depth     15
#               Modes "1024x768" "800x600" "640x480"
#       EndSubSection
        SubSection "Display"
                Depth     16
#               Modes "1024x768" "800x600" "640x480"
                Modes "640x480"
        EndSubSection
#       SubSection "Display"
#               Depth     24
#               Modes "1024x768" "800x600" "640x480"
#       EndSubSection
#       SubSection "Display"
#               Depth     32
#               Modes "1024x768" "800x600" "640x480"
#       EndSubSection
EndSection

Section "DRI"
        Mode 0666
EndSection
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10 20041215174925 [EMAIL 
PROTECTED])
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.26 i686 [ELF] 
Build Date: 15 December 2004

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way.  Bugs should be reported to the Debian Bug Tracking System; see
<URL: http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
       XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
  plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.13 ([EMAIL PROTECTED]) (gcc version 3.3.3 (SuSE 
Linux)) #9 Fri Sep 2 16:00:15 CEST 2005 
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/XFree86.0.log", Time: Mon Sep  5 11:56:34 2005
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card1"
(**) |-->Input Device "Keyboard0"
(**) |-->Input Device "USB Mouse"
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/truetype".
        Entry deleted from font path.
        (Run 'mkfontdir' on "/usr/share/fonts/truetype").
(WW) The directory "/usr/X11R6/lib/X11/fonts/defoma/CID" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/defoma/TrueType" does not exist.
        Entry deleted from font path.
(**) FontPath set to 
"/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi:unscaled,/usr/X11R6/lib/X11/fonts/100dpi,/usr/X11R6/lib/X11/fonts/Speedo,/usr/X11R6/lib/X11/fonts/PEX,/usr/X11R6/lib/X11/fonts/cyrillic,/usr/X11R6/lib/X11/fonts/Type1,/usr/share/fonts/ttf/western,/usr/share/fonts/ttf/decoratives,/usr/share/fonts/truetype/openoffice,/usr/share/fonts/truetype/ttf-bitstream-vera,/usr/share/fonts/latex-ttf-fonts"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "AllowMouseOpenFail" "true"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
        XFree86 ANSI C Emulation: 0.2
        XFree86 Video Driver: 0.6
        XFree86 XInput driver : 0.4
        XFree86 Server Extension : 0.2
        XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        Module class: XFree86 Font Renderer
        ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,3580 card 8086,3580 rev 02 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 8086,3584 rev 02 class 08,80,00 hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 8086,3585 rev 02 class 08,80,00 hdr 80
(II) PCI: 00:02:0: chip 8086,3582 card 8086,3582 rev 02 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,3582 card 8086,3582 rev 02 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,24c2 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 8086,24cd rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 8086,24c2 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 8086,24c2 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 414c,4720 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:06:0: chip 8086,4223 card 8086,1001 rev 05 class 02,80,00 hdr 00
(II) PCI: 01:08:0: chip 8086,103a card 0000,0000 rev 82 class 02,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,1), 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:30:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 1 I/O range:
        [0] -1  0       0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
        [0] -1  0       0xe8000000 - 0xe80fffff (0x100000) 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:*(0:2:0) Intel Corp. 82852/855GM Integrated Graphics Device rev 2, Mem 
@ 0xd8000000/27, 0xe8180000/19, I/O @ 0xe900/3
(--) PCI: (0:2:1) Intel Corp. 82852/855GM Integrated Graphics Device rev 2, Mem 
@ 0xe0000000/27, 0xe8100000/19
(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       0xe8001000 - 0xe8001fff (0x1000) MX[B]
        [1] -1  0       0xe8000000 - 0xe8000fff (0x1000) MX[B]
        [2] -1  0       0xe8202000 - 0xe82020ff (0x100) MX[B]
        [3] -1  0       0xe8201000 - 0xe82011ff (0x200) MX[B]
        [4] -1  0       0x0e000000 - 0x0e0003ff (0x400) MX[B]
        [5] -1  0       0xe8200000 - 0xe82003ff (0x400) MX[B]
        [6] -1  0       0xe8100000 - 0xe817ffff (0x80000) MX[B](B)
        [7] -1  0       0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [8] -1  0       0xe8180000 - 0xe81fffff (0x80000) MX[B](B)
        [9] -1  0       0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
        [10] -1 0       0x0000d000 - 0x0000d03f (0x40) IX[B]
        [11] -1 0       0x0000ec00 - 0x0000ec3f (0x40) IX[B]
        [12] -1 0       0x0000e000 - 0x0000e0ff (0x100) IX[B]
        [13] -1 0       0x00000500 - 0x0000051f (0x20) IX[B]
        [14] -1 0       0x0000f000 - 0x0000f00f (0x10) IX[B]
        [15] -1 0       0x0000e800 - 0x0000e81f (0x20) IX[B]
        [16] -1 0       0x0000ed00 - 0x0000ed1f (0x20) IX[B]
        [17] -1 0       0x0000eb00 - 0x0000eb1f (0x20) IX[B]
        [18] -1 0       0x0000e900 - 0x0000e907 (0x8) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
        [0] -1  0       0xe8001000 - 0xe8001fff (0x1000) MX[B]
        [1] -1  0       0xe8000000 - 0xe8000fff (0x1000) MX[B]
        [2] -1  0       0xe8202000 - 0xe82020ff (0x100) MX[B]
        [3] -1  0       0xe8201000 - 0xe82011ff (0x200) MX[B]
        [4] -1  0       0x0e000000 - 0x0e0003ff (0x400) MX[B]
        [5] -1  0       0xe8200000 - 0xe82003ff (0x400) MX[B]
        [6] -1  0       0xe8100000 - 0xe817ffff (0x80000) MX[B](B)
        [7] -1  0       0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [8] -1  0       0xe8180000 - 0xe81fffff (0x80000) MX[B](B)
        [9] -1  0       0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
        [10] -1 0       0x0000d000 - 0x0000d03f (0x40) IX[B]
        [11] -1 0       0x0000ec00 - 0x0000ec3f (0x40) IX[B]
        [12] -1 0       0x0000e000 - 0x0000e0ff (0x100) IX[B]
        [13] -1 0       0x00000500 - 0x0000051f (0x20) IX[B]
        [14] -1 0       0x0000f000 - 0x0000f00f (0x10) IX[B]
        [15] -1 0       0x0000e800 - 0x0000e81f (0x20) IX[B]
        [16] -1 0       0x0000ed00 - 0x0000ed1f (0x20) IX[B]
        [17] -1 0       0x0000eb00 - 0x0000eb1f (0x20) IX[B]
        [18] -1 0       0x0000e900 - 0x0000e907 (0x8) IX[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 - 0x0dffffff (0xdf00000) 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 - 0x0dffffff (0xdf00000) 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       0xe8001000 - 0xe8001fff (0x1000) MX[B]
        [6] -1  0       0xe8000000 - 0xe8000fff (0x1000) MX[B]
        [7] -1  0       0xe8202000 - 0xe82020ff (0x100) MX[B]
        [8] -1  0       0xe8201000 - 0xe82011ff (0x200) MX[B]
        [9] -1  0       0x0e000000 - 0x0e0003ff (0x400) MX[B]
        [10] -1 0       0xe8200000 - 0xe82003ff (0x400) MX[B]
        [11] -1 0       0xe8100000 - 0xe817ffff (0x80000) MX[B](B)
        [12] -1 0       0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [13] -1 0       0xe8180000 - 0xe81fffff (0x80000) MX[B](B)
        [14] -1 0       0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
        [15] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1 0       0x0000d000 - 0x0000d03f (0x40) IX[B]
        [18] -1 0       0x0000ec00 - 0x0000ec3f (0x40) IX[B]
        [19] -1 0       0x0000e000 - 0x0000e0ff (0x100) IX[B]
        [20] -1 0       0x00000500 - 0x0000051f (0x20) IX[B]
        [21] -1 0       0x0000f000 - 0x0000f00f (0x10) IX[B]
        [22] -1 0       0x0000e800 - 0x0000e81f (0x20) IX[B]
        [23] -1 0       0x0000ed00 - 0x0000ed1f (0x20) IX[B]
        [24] -1 0       0x0000eb00 - 0x0000eb1f (0x20) IX[B]
        [25] -1 0       0x0000e900 - 0x0000e907 (0x8) IX[B](B)
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No 
symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o":  No 
symbols found
(II) Module GLcore: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Server Extension, version 0.2
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        Module class: XFree86 Server Extension
        ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        Module class: XFree86 Server Extension
        ABI class: XFree86 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: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Reloading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Loading extension GLX
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o":  No symbols 
found
(II) Module speedo: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.1
        Module class: XFree86 Font Renderer
        ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.2
        Module class: XFree86 Font Renderer
        ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 2.0.2
        Module class: XFree86 Font Renderer
        ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.13.0
        Module class: XFree86 Server Extension
        ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "fbdev"
(II) Loading /usr/X11R6/lib/modules/drivers/fbdev_drv.o
(II) Module fbdev: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 0.1.0
        ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/X11R6/lib/modules/input/kbd_drv.o
(II) Module kbd: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        Module class: XFree86 XInput Driver
        ABI class: XFree86 XInput driver, version 0.4
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 1.0.0
        Module class: XFree86 XInput Driver
        ABI class: XFree86 XInput driver, version 0.4
(II) FBDEV: driver for framebuffer: fbdev, afb
(II) Primary Device is: PCI 00:02:0
(II) Loading sub module "fbdevhw"
(II) LoadModule: "fbdevhw"
(II) Loading /usr/X11R6/lib/modules/linux/libfbdevhw.a
(II) Module fbdevhw: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 0.0.2
        ABI class: XFree86 Video Driver, version 0.6
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1  0       0xffe00000 - 0xffffffff (0x200000) MX[B](B)
        [1] -1  0       0x00100000 - 0x0dffffff (0xdf00000) 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       0xe8001000 - 0xe8001fff (0x1000) MX[B]
        [6] -1  0       0xe8000000 - 0xe8000fff (0x1000) MX[B]
        [7] -1  0       0xe8202000 - 0xe82020ff (0x100) MX[B]
        [8] -1  0       0xe8201000 - 0xe82011ff (0x200) MX[B]
        [9] -1  0       0x0e000000 - 0x0e0003ff (0x400) MX[B]
        [10] -1 0       0xe8200000 - 0xe82003ff (0x400) MX[B]
        [11] -1 0       0xe8100000 - 0xe817ffff (0x80000) MX[B](B)
        [12] -1 0       0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [13] -1 0       0xe8180000 - 0xe81fffff (0x80000) MX[B](B)
        [14] -1 0       0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
        [15] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1 0       0x0000d000 - 0x0000d03f (0x40) IX[B]
        [18] -1 0       0x0000ec00 - 0x0000ec3f (0x40) IX[B]
        [19] -1 0       0x0000e000 - 0x0000e0ff (0x100) IX[B]
        [20] -1 0       0x00000500 - 0x0000051f (0x20) IX[B]
        [21] -1 0       0x0000f000 - 0x0000f00f (0x10) IX[B]
        [22] -1 0       0x0000e800 - 0x0000e81f (0x20) IX[B]
        [23] -1 0       0x0000ed00 - 0x0000ed1f (0x20) IX[B]
        [24] -1 0       0x0000eb00 - 0x0000eb1f (0x20) IX[B]
        [25] -1 0       0x0000e900 - 0x0000e907 (0x8) IX[B](B)
(**) FBDEV(0): claimed PCI slot 0:2:0
(II) FBDEV(0): using default device
(II) resource ranges after probing:
        [0] -1  0       0xffe00000 - 0xffffffff (0x200000) MX[B](B)
        [1] -1  0       0x00100000 - 0x0dffffff (0xdf00000) 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       0xe8001000 - 0xe8001fff (0x1000) MX[B]
        [6] -1  0       0xe8000000 - 0xe8000fff (0x1000) MX[B]
        [7] -1  0       0xe8202000 - 0xe82020ff (0x100) MX[B]
        [8] -1  0       0xe8201000 - 0xe82011ff (0x200) MX[B]
        [9] -1  0       0x0e000000 - 0x0e0003ff (0x400) MX[B]
        [10] -1 0       0xe8200000 - 0xe82003ff (0x400) MX[B]
        [11] -1 0       0xe8100000 - 0xe817ffff (0x80000) MX[B](B)
        [12] -1 0       0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [13] -1 0       0xe8180000 - 0xe81fffff (0x80000) MX[B](B)
        [14] -1 0       0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
        [15] 0  0       0x000a0000 - 0x000affff (0x10000) MS[B]
        [16] 0  0       0x000b0000 - 0x000b7fff (0x8000) MS[B]
        [17] 0  0       0x000b8000 - 0x000bffff (0x8000) MS[B]
        [18] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [19] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [20] -1 0       0x0000d000 - 0x0000d03f (0x40) IX[B]
        [21] -1 0       0x0000ec00 - 0x0000ec3f (0x40) IX[B]
        [22] -1 0       0x0000e000 - 0x0000e0ff (0x100) IX[B]
        [23] -1 0       0x00000500 - 0x0000051f (0x20) IX[B]
        [24] -1 0       0x0000f000 - 0x0000f00f (0x10) IX[B]
        [25] -1 0       0x0000e800 - 0x0000e81f (0x20) IX[B]
        [26] -1 0       0x0000ed00 - 0x0000ed1f (0x20) IX[B]
        [27] -1 0       0x0000eb00 - 0x0000eb1f (0x20) IX[B]
        [28] -1 0       0x0000e900 - 0x0000e907 (0x8) IX[B](B)
        [29] 0  0       0x000003b0 - 0x000003bb (0xc) IS[B]
        [30] 0  0       0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) FBDEV(0): Depth 8, (--) framebuffer bpp 8
(==) FBDEV(0): Default visual is PseudoColor
(==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
(II) FBDEV(0): hardware: VGA16 VGA (video memory: 64kB)
(II) FBDEV(0): checking modes against framebuffer device...
(II) FBDEV(0):  mode "640x480" test failed
(II) FBDEV(0): checking modes against monitor...
(--) FBDEV(0): Virtual size is 640x480 (pitch 640)
(**) FBDEV(0):  Built-in mode "current": 25.2 MHz, 31.5 kHz, 59.9 Hz
(II) FBDEV(0): Modeline "current"   25.18  640 656 752 800  480 490 492 525 
-hsync -vsync -csync
(++) FBDEV(0): DPI set to (75, 75)
(EE) FBDEV(0): EGA/VGA planes are not yet supported by the fbdev driver [1]
(II) UnloadModule: "fbdev"
(II) UnloadModule: "fbdevhw"
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to [EMAIL PROTECTED]

Reply via email to