iamathinker 发表于 2005-5-1 16:42:38

显卡Intel 852的兄弟给一份显卡BIOS映像文件吧!

我的笔记本不能到1024x768的分辨率,应该是显卡BIOS的问题。

使用INTEL 852 显卡成功达到1024x768分辨率的大哥可以把你们的BIOS映像文件给我一份吗?

可以执行下面的命令得到:
dd if=/dev/mem of=vbios.dmp bs=16384 skip=48 count=4

感激万分!!

iamathinker 发表于 2005-5-1 16:43:31

我的Email:[email protected]

linky_fan 发表于 2005-5-5 12:11:32


我的笔记本不能到1024x768的分辨率,应该是显卡BIOS的问题。

这个............., win下可以的话, 和bios没啥关系吧??

iamathinker 发表于 2005-5-7 12:49:37

windows下的驱动是绕过显卡BIOS直接控制硬件寄存器的,而i810驱动需要显卡bios来设置分辨率。从log文件得知是显卡bios里1024x768这个mode被设置为无效。

那位好心人,花一点时间给我一个显卡bios映像文件让我尝一下linux里1024x768的滋味吧!

linky_fan 发表于 2005-5-7 18:15:49

i810不支持1024x768???, 你的x配置有没有问题?

iamathinker 发表于 2005-5-8 20:08:08

i810不支持1024x768???, 你的x配置有没有问题?
以下为我的xorg.conf文件

# **********************************************************************
# Refer to the xorg.conf(5x) man page for details about the format of
# this file.
# **********************************************************************


# **********************************************************************
# Files section.This allows default font and rgb paths to be set
# **********************************************************************
#
Section "Files"
               
# The location of the RGB database.Note, this is the name of the
# file minus the extension (like ".txt" or ".db").There is normally
# no need to change the default.

    RgbPath        "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
#
    FontPath   "/usr/share/fonts/truetype/"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
#   FontPath   "/usr/share/fonts/local/"
#   FontPath   "/usr/share/fonts/Speedo/"
#   FontPath   "/usr/share/fonts/freefont/"
#   FontPath   "/usr/share/fonts/CID/"

#The module search path.The default path is shown here.
#
#    ModulePath "/usr/X11R6/lib/modules"

EndSection


# **********************************************************************
# Module section -- thissectionis used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

        Load        "dbe"        # Double buffer extension
        Load        "dri"                # This loads the DRI module
        Load        "glx"                # This loads the GLX module
        Load        "GLcore"
        Load        "bitmap"
        Load        "ddc"
        Load        "extmod"
        Load        "freetype"
        Load        "int10"
        Load        "record"
        Load        "vbe"
#        Load        "speedo"
#        Load        "type1"

EndSection


# **********************************************************************
# Input devices
# **********************************************************************
#


# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************
Section "InputDevice"
        Identifier        "Generic Keyboard"
        Driver                "kbd"
        Option                 "AutoRepeat" "500 30"
        Option                "CoreKeyboard"
        Option "XkbRules"        "xorg"
        Option "XkbModel"        "pc105"
        Option "XkbLayout"        "us"
EndSection
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************
Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "mouse"
        Option                "CorePointer"
        Option                "Device"                "/dev/psaux"
        Option                "Protocol"                "PS/2"
#        Option                "Emulate3Buttons"        "true"
        Option                "ZAxisMapping"        "4 5"
EndSection
Section "InputDevice"
        Identifier        "Generic Mouse"
        Driver                "mouse"
        Option                "SendCoreEvents"        "true"
        Option                "Device"                "/dev/input/mice"
        Option                "Protocol"                "ImPS/2"
#        Option                "Emulate3Buttons"        "true"
        Option                "ZAxisMapping"                "4 5"
EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************
#
Section "Device"
        Identifier        "i810"
        VendorName        "Intel"
        Driver                "i810"
        Option                "AGPMode" "1"
        VideoRam        32768
EndSection


# **********************************************************************
# Monitor section
# **********************************************************************
#
Section "Monitor"
        Identifier        "LCD1024"
        HorizSync        28-49
        VertRefresh        43-72
        Option                "DPMS"
        Modeline "1024x768"64.111024 1080 1184 1344768 769 772 795-HSync +Vsync
EndSection



# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.Each describes
# the configuration of a single screen.A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
#
Section "Screen"
        Identifier        "Default Screen"
        Device                "i810"
        Monitor                "LCD1024"
        DefaultDepth        24
        SubSection "Display"
                Depth                1
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth                4
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth                8
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth                15
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth                16
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth                24
                Modes                "1024x768" "800x600" "640x480"
                ViewPort        0 0
        EndSubSection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present.Each describes
# the way multiple screens are organised.A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option.In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.
#
Section "ServerLayout"
        Identifier        "Default Layout"
        Screen                "Default Screen"
        InputDevice        "Generic Keyboard"
        InputDevice        "Configured Mouse"
        InputDevice        "Generic Mouse"
EndSection

Section "DRI"
        Mode        0666
EndSection


以下为我的xorg的log文件

This is a pre-release version of the The X.Org Foundation X11.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the The X.Org Foundation "monolithic tree" CVS
repository hosted at http://www.freedesktop.org/Software/xorg/
X Window System Version 6.8.99.5
Release Date: 01 May 2005 + cvs
X Protocol Version 11, Revision 0, Release 6.8.99.5
Build Operating System: Linux 2.6.11-gentoo-r6 i686 [ELF]
Current Operating System: Linux MMIX64 2.6.11-gentoo-r6 #8 SMP Mon May 2 12:31:02 Local time zone must be set--see zic m i686
Build Date: 07 May 2005
        Before reporting problems, check http://wiki.X.Org
        to make sure that you have the latest version.
Module Loader present
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: Sun May8 19:52:36 2005
(==) Using config file: "/root/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "LCD1024"
(**) |   |-->Device "i810"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Generic Mouse"
(**) FontPath set to "/usr/share/fonts/truetype/,/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/lib/modules"
(II) No APM support in BIOS or kernel
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.2
        X.Org Video Driver: 0.7
        X.Org XInput driver : 0.4
        X.Org Server Extension : 0.2
        X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
        compiled for 6.8.99.5, 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/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Video Driver, version 0.7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,3580 card 17c0,4011 rev 01 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 17c0,4012 rev 01 class 08,80,00 hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 17c0,4013 rev 01 class 08,80,00 hdr 80
(II) PCI: 00:02:0: chip 8086,3582 card 17c0,205a rev 01 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,3582 card 17c0,205a rev 01 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,24c2 card 17c0,4006 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 17c0,4006 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 17c0,4006 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 17c0,1071 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev 83 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card 0000,0000 rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 17c0,4006 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 17c0,4006 rev 03 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 17c0,2005 rev 03 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 17c0,1069 rev 03 class 07,03,00 hdr 00
(II) PCI: 02:03:0: chip 11c1,5811 card 17c0,1070 rev 61 class 0c,00,10 hdr 00
(II) PCI: 02:05:0: chip 10ec,8139 card 17c0,1053 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:09:0: chip 1524,1410 card 0000,0000 rev 00 class 06,07,00 hdr 02
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,3), 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 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 2 I/O range:
        [0] -1        0        0x00003000 - 0x000030ff (0x100) IX[B]
        [1] -1        0        0x00003400 - 0x000034ff (0x100) IX[B]
        [2] -1        0        0x00003800 - 0x000038ff (0x100) IX[B]
        [3] -1        0        0x00003c00 - 0x00003cff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
        [0] -1        0        0xe0200000 - 0xe02fffff (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)
(II) PCI-to-CardBus bridge:
(II) Bus 3: bridge is at (2:9:0), (2,3,6), BCTRL: 0x03c0 (VGA_EN is cleared)
(--) PCI:*(0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 1, Mem @ 0xe8000000/27, 0xe0000000/19, I/O @ 0x1800/3
(--) PCI: (0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 1, Mem @ 0xf0000000/27, 0xe0080000/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        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [1] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [2] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [3] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [4] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [5] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [6] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [7] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [8] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [9] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [10] -1        0        0x00003000 - 0x00003100 (0x101) IX[B]
        [11] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [12] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [13] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [14] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [15] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [16] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [17] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [18] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [19] -1        0        0x00001820 - 0x00001840 (0x21) IX[B]
        [20] -1        0        0x00001800 - 0x00001800 (0x1) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
        [0] -1        0        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [1] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [2] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [3] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [4] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [5] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [6] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [7] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [8] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [9] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [10] -1        0        0x00003000 - 0x00003100 (0x101) IX[B]
        [11] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [12] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [13] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [14] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [15] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [16] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [17] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [18] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [19] -1        0        0x00001820 - 0x00001840 (0x21) IX[B]
        [20] -1        0        0x00001800 - 0x00001800 (0x1) 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 - 0x17ffffff (0x17f00000) 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 - 0x17ffffff (0x17f00000) 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        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [6] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [7] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [8] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [9] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [10] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [11] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [12] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [13] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [14] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [15] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1        0        0x00003000 - 0x00003100 (0x101) IX[B]
        [18] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [19] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [20] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [21] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [22] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [23] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [24] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [25] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [26] -1        0        0x00001820 - 0x00001840 (0x21) IX[B]
        [27] -1        0        0x00001800 - 0x00001800 (0x1) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 6.8.99.5, 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: "dri"
(II) Loading /usr/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
        compiled for 6.8.99.5, 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/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "glx"
(II) Loading /usr/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "GLcore"
(II) Reloading /usr/lib/modules/extensions/libGLcore.a
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "extmod"
(II) Loading /usr/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 6.8.99.5, 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 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/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 6.8.99.5, 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: "int10"
(II) Loading /usr/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "record"
(II) Loading /usr/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
        compiled for 6.8.99.5, 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: "vbe"
(II) Loading /usr/lib/modules/libvbe.a
(II) Module vbe: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.1.0
        ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "i810"
(II) Loading /usr/lib/modules/drivers/i810_drv.o
(II) Module i810: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.3.0
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "kbd"
(II) Loading /usr/lib/modules/input/kbd_drv.o
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: "mouse"
(II) Loading /usr/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.4
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
        i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, 915GM
(II) Primary Device is: PCI 00:02:0
(--) Assigning device section with no busID to primary device
(--) Chipset 852GM/855GM found
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[B](B)
        [1] -1        0        0x00100000 - 0x17ffffff (0x17f00000) 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        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [6] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [7] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [8] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [9] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [10] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [11] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [12] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [13] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [14] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [15] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1        0        0x00003000 - 0x00003100 (0x101) IX[B]
        [18] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [19] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [20] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [21] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [22] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [23] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [24] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [25] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [26] -1        0        0x00001820 - 0x00001840 (0x21) IX[B]
        [27] -1        0        0x00001800 - 0x00001800 (0x1) IX[B](B)
(II) resource ranges after probing:
        [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[B](B)
        [1] -1        0        0x00100000 - 0x17ffffff (0x17f00000) 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        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [6] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [7] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [8] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [9] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [10] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [11] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [12] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [13] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [14] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [15] 1        0        0x000a0000 - 0x000affff (0x10000) MS[B]
        [16] 1        0        0x000b0000 - 0x000b7fff (0x8000) MS[B]
        [17] 1        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        0x00003000 - 0x00003100 (0x101) IX[B]
        [21] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [22] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [23] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [24] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [25] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [26] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [27] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [28] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [29] -1        0        0x00001820 - 0x00001840 (0x21) IX[B]
        [30] -1        0        0x00001800 - 0x00001800 (0x1) IX[B](B)
        [31] 1        0        0x000003b0 - 0x000003bb (0xc) IS[B]
        [32] 1        0        0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/modules/linux/libint10.a
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Reloading /usr/lib/modules/libvbe.a
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 0.1.0
        ABI class: X.Org Video Driver, version 0.7
(**) I810(0): Depth 24, (--) framebuffer bpp 32
(==) I810(0): RGB weight 888
(==) I810(0): Default visual is TrueColor
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/modules/linux/libint10.a
(II) I810(0): initializing int10
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 8000 kB
(II) I810(0): VESA VBE OEM: Intel(r)852MG/852MGE/855MG/855MGE Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)852MG/852MGE/855MG/855MGE Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Integrated Graphics Chipset: Intel(R) 852GM
(--) I810(0): Chipset: "852GM/855GM"
(--) I810(0): Linear framebuffer at 0xE8000000
(--) I810(0): IO registers at addr 0xE0000000
(II) I810(0): 2 display pipes available.
(II) I810(0): detected 8060 kB stolen memory.
(II) I810(0): I830CheckAvailableMemory: 319484 kB available
(II) I810(0): Checking Lid status enabled
(II) I810(0): Will attempt to tell the BIOS that there is 12288 kB VideoRAM
(WW) I810(0): Extended BIOS function 0x5f11 not supported.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/modules/linux/libint10.a
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 12288 kB
(II) I810(0): VESA VBE OEM: Intel(r)852MG/852MGE/855MG/855MGE Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)852MG/852MGE/855MG/855MGE Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Tweak BIOS image to 12288 kB VideoRAM
(--) I810(0): Pre-allocated VideoRAM: 8060 kByte
(**) I810(0): VideoRAM: 32768 kByte
(==) I810(0): video overlay key set to 0x101fe
(**) I810(0): page flipping disabled
(==) I810(0): Using gamma correction (1.0, 1.0, 1.0)
(II) I810(0): BIOS Build: 2880
(==) I810(0): Device Presence: disabled.
(WW) I810(0): Primary Pipe is B, switching off second monitor (0x800)
(==) I810(0): Display Info: enabled.
(II) I810(0): Broken BIOSes cause the system to hang here.
              If you encounter this problem please add
               Option "DisplayInfo" "FALSE"
              to the Device section of your XF86Config file.
(II) I810(0): Display Info: CRT: attached: FALSE, present: TRUE, size: (800,600)
(II) I810(0): Display Info: TV: attached: FALSE, present: TRUE, size: (800,600)
(II) I810(0): Display Info: DFP (digital flat panel): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP (local flat panel): attached: TRUE, present: TRUE, size: (1024,768)
(II) I810(0): Display Info: CRT2 (second CRT): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: TV2 (second TV): attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Size of device LFP (local flat panel) is 1024 x 768
(II) I810(0): No active displays on Pipe A.
(II) I810(0): Currently active displays on Pipe B:
(II) I810(0):         LFP (local flat panel)
(II) I810(0): Lowest common panel size for pipe B is 1024 x 768
(==) I810(0): Display is using Pipe B
(--) I810(0): Maximum frambuffer space: 32600 kByte
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/lib/modules/libddc.a
(II) I810(0): VESA VBE PanelID read successfully
(II) I810(0): PanelID returned panel resolution : 1024x768
(II) I810(0): VESA VBE DDC supported
(II) I810(0): VESA VBE DDC Level none
(II) I810(0): VESA VBE DDC transfer in appr. 0 sec.
(II) I810(0): VESA VBE DDC read failed
(--) I810(0): A non-CRT device is attached to pipe B.
        No refresh rate overrides will be attempted.
(--) I810(0): Maximum space available for video modes: 12288 kByte
Mode: 30 (640x480)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 640
        XResolution: 640
        YResolution: 480
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 37
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 640
        BnkNumberOfImagePages: 37
        LinNumberOfImagePages: 37
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 32 (800x600)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 800
        XResolution: 800
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 26
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 800
        BnkNumberOfImagePages: 26
        LinNumberOfImagePages: 26
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 34 (1024x768)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1024
        XResolution: 1024
        YResolution: 768
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 15
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1024
        BnkNumberOfImagePages: 15
        LinNumberOfImagePages: 15
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 36 (1024x600)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1024
        XResolution: 1024
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 20
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1024
        BnkNumberOfImagePages: 20
        LinNumberOfImagePages: 20
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 38 (1280x1024)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1280
        XResolution: 1280
        YResolution: 1024
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 8
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1280
        BnkNumberOfImagePages: 8
        LinNumberOfImagePages: 8
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 3a (1600x1200)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1600
        XResolution: 1600
        YResolution: 1200
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 5
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1600
        BnkNumberOfImagePages: 5
        LinNumberOfImagePages: 5
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 3c (1920x1440)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1920
        XResolution: 1920
        YResolution: 1440
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 8
        NumberOfBanks: 1
        MemoryModel: 4
        BankSize: 0
        NumberOfImages: 3
        RedMaskSize: 0
        RedFieldPosition: 0
        GreenMaskSize: 0
        GreenFieldPosition: 0
        BlueMaskSize: 0
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1920
        BnkNumberOfImagePages: 3
        LinNumberOfImagePages: 3
        LinRedMaskSize: 0
        LinRedFieldPosition: 0
        LinGreenMaskSize: 0
        LinGreenFieldPosition: 0
        LinBlueMaskSize: 0
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 41 (640x480)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1280
        XResolution: 640
        YResolution: 480
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 20
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1280
        BnkNumberOfImagePages: 20
        LinNumberOfImagePages: 20
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 43 (800x600)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 1600
        XResolution: 800
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 11
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 1600
        BnkNumberOfImagePages: 11
        LinNumberOfImagePages: 11
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 45 (1024x768)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 2048
        XResolution: 1024
        YResolution: 768
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 7
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 2048
        BnkNumberOfImagePages: 7
        LinNumberOfImagePages: 7
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 47 (1024x600)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 2048
        XResolution: 1024
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 9
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 2048
        BnkNumberOfImagePages: 9
        LinNumberOfImagePages: 9
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 49 (1280x1024)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 2560
        XResolution: 1280
        YResolution: 1024
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 3
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 2560
        BnkNumberOfImagePages: 3
        LinNumberOfImagePages: 3
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 4b (1600x1200)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 3200
        XResolution: 1600
        YResolution: 1200
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 2
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 3200
        BnkNumberOfImagePages: 2
        LinNumberOfImagePages: 2
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
Mode: 4d (1920x1440)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 3840
        XResolution: 1920
        YResolution: 1440
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 16
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 1
        RedMaskSize: 5
        RedFieldPosition: 11
        GreenMaskSize: 6
        GreenFieldPosition: 5
        BlueMaskSize: 5
        BlueFieldPosition: 0
        RsvdMaskSize: 0
        RsvdFieldPosition: 0
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 3840
        BnkNumberOfImagePages: 1
        LinNumberOfImagePages: 1
        LinRedMaskSize: 5
        LinRedFieldPosition: 11
        LinGreenMaskSize: 6
        LinGreenFieldPosition: 5
        LinBlueMaskSize: 5
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 0
        LinRsvdFieldPosition: 0
        MaxPixelClock: 230000000
*Mode: 50 (640x480)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 2560
        XResolution: 640
        YResolution: 480
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 9
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 2560
        BnkNumberOfImagePages: 9
        LinNumberOfImagePages: 9
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
*Mode: 52 (800x600)
        ModeAttributes: 0x9b
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 3200
        XResolution: 800
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 5
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 3200
        BnkNumberOfImagePages: 5
        LinNumberOfImagePages: 5
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
Mode: 54 (1024x768)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 4096
        XResolution: 1024
        YResolution: 768
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 3
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 4096
        BnkNumberOfImagePages: 3
        LinNumberOfImagePages: 3
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
Mode: 56 (1024x600)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 4096
        XResolution: 1024
        YResolution: 600
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 4
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 4096
        BnkNumberOfImagePages: 4
        LinNumberOfImagePages: 4
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
Mode: 58 (1280x1024)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 5120
        XResolution: 1280
        YResolution: 1024
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 1
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 5120
        BnkNumberOfImagePages: 1
        LinNumberOfImagePages: 1
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
Mode: 5a (1600x1200)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 6400
        XResolution: 1600
        YResolution: 1200
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 0
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 6400
        BnkNumberOfImagePages: 0
        LinNumberOfImagePages: 0
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
Mode: 5c (1920x1440)
        ModeAttributes: 0x9a
        WinAAttributes: 0x7
        WinBAttributes: 0x0
        WinGranularity: 64
        WinSize: 64
        WinASegment: 0xa000
        WinBSegment: 0x0
        WinFuncPtr: 0xc0006f3a
        BytesPerScanline: 7680
        XResolution: 1920
        YResolution: 1440
        XCharSize: 8
        YCharSize: 16
        NumberOfPlanes: 1
        BitsPerPixel: 32
        NumberOfBanks: 1
        MemoryModel: 6
        BankSize: 0
        NumberOfImages: 0
        RedMaskSize: 8
        RedFieldPosition: 16
        GreenMaskSize: 8
        GreenFieldPosition: 8
        BlueMaskSize: 8
        BlueFieldPosition: 0
        RsvdMaskSize: 8
        RsvdFieldPosition: 24
        DirectColorModeInfo: 0
        PhysBasePtr: 0xe8000000
        LinBytesPerScanLine: 7680
        BnkNumberOfImagePages: 0
        LinNumberOfImagePages: 0
        LinRedMaskSize: 8
        LinRedFieldPosition: 16
        LinGreenMaskSize: 8
        LinGreenFieldPosition: 8
        LinBlueMaskSize: 8
        LinBlueFieldPosition: 0
        LinRsvdMaskSize: 8
        LinRsvdFieldPosition: 24
        MaxPixelClock: 230000000
(II) I810(0): LCD1024: Using hsync range of 28.00-49.00 kHz
(II) I810(0): LCD1024: Using vrefresh range of 43.00-72.00 Hz
(II) I810(0): Not using mode "1024x768" (no mode of this name)
(II) I810(0): Increasing the scanline pitch to allow tiling mode (800 -> 1024).
(--) I810(0): Virtual size is 800x600 (pitch 1024)
(**) I810(0): *Built-in mode "800x600"
(**) I810(0): *Built-in mode "640x480"
(==) I810(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/modules/libfb.a
(II) Module fb: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.2.0
        ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 0.1.0
        ABI class: X.Org Video Driver, version 0.7
(==) I810(0): VBE Restore workaround: enabled.
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/modules/libshadow.a
(II) Module shadow: vendor="X.Org Foundation"
        compiled for 6.8.99.5, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.2
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?No, I don't.
(II) resource ranges after preInit:
        [0] 1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MS[B]
        [1] 1        0        0xe8000000 - 0xf0000000 (0x8000001) MS[B]
        [2] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[B](B)
        [3] -1        0        0x00100000 - 0x17ffffff (0x17f00000) MX[B]E(B)
        [4] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[B]
        [5] -1        0        0x000c0000 - 0x000effff (0x30000) MX[B]
        [6] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [7] -1        0        0xe0201000 - 0xe02010f0 (0xf1) MX[B]
        [8] -1        0        0xe0200000 - 0xe0200ff0 (0xff1) MX[B]
        [9] -1        0        0xe0100800 - 0xe01008f0 (0xf1) MX[B]
        [10] -1        0        0xe0100c00 - 0xe0100df0 (0x1f1) MX[B]
        [11] -1        0        0x18000000 - 0x180003f0 (0x3f1) MX[B]
        [12] -1        0        0xe0100000 - 0xe01003f0 (0x3f1) MX[B]
        [13] -1        0        0xe0080000 - 0xe00ffff0 (0x7fff1) MX[B](B)
        [14] -1        0        0xf0000000 - 0xf8000000 (0x8000001) MX[B](B)
        [15] -1        0        0xe0000000 - 0xe007fff0 (0x7fff1) MX[B](B)
        [16] -1        0        0xe8000000 - 0xf0000000 (0x8000001) MX[B](B)
        [17] 1        0        0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
        [18] 1        0        0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
        [19] 1        0        0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
        [20] 1        0        0x00001800 - 0x00001800 (0x1) IS[B]
        [21] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [22] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [23] -1        0        0x00003000 - 0x00003100 (0x101) IX[B]
        [24] -1        0        0x00002000 - 0x00002080 (0x81) IX[B]
        [25] -1        0        0x00002400 - 0x00002500 (0x101) IX[B]
        [26] -1        0        0x000018c0 - 0x00001900 (0x41) IX[B]
        [27] -1        0        0x00001c00 - 0x00001d00 (0x101) IX[B]
        [28] -1        0        0x00001880 - 0x000018a0 (0x21) IX[B]
        [29] -1        0        0x00001810 - 0x00001820 (0x11) IX[B]
        [30] -1        0        0x00001860 - 0x00001880 (0x21) IX[B]
        [31] -1        0        0x00001840 - 0x00001860 (0x21) IX[B]
        [32] -1        0        0x00001820 - 0x00001840 (0x21) IX[B&

linky_fan 发表于 2005-5-8 21:31:05


(II) I810(0): LCD1024: Using hsync range of 28.00-49.00 kHz
(II) I810(0): LCD1024: Using vrefresh range of 43.00-72.00 Hz
(II) I810(0): Not using mode "1024x768" (no mode of this name)
(II) I810(0): Increasing the scanline pitch to allow tiling mode (800 -> 1024).

look 这几句. 垂直and水平刷新率好低啊

DefaultDepth   24

调成16看看 :arrow:

bigcat00 发表于 2005-5-8 21:33:26

I) I810(0): LCD1024: Using hsync range of 28.00-49.00 kHz
行扫描频率太低了,调到70,然后肯定可以上1024×768。 :mrgreen::mrgreen:

iamathinker 发表于 2005-5-9 21:28:17

新的xorg.conf:

# *********************************************************************
# Monitor section
# **********************************************************************
#
Section "Monitor"
        Identifier        "LCD1024"
        HorizSync        28-70
        VertRefresh        43-90
        Option                "DPMS"
        Modeline "1024x768"64.111024 1080 1184 1344768 769 772 795-HSync +Vsync
EndSection

新的log:

(II) I810(0): LCD1024: Using hsync range of 28.00-49.00 kHz
(II) I810(0): LCD1024: Using vrefresh range of 43.00-72.00 Hz
(II) I810(0): Not using mode "1024x768" (no mode of this name)
(II) I810(0): Increasing the scanline pitch to allow tiling mode (800 -> 1024).
(--) I810(0): Virtual size is 800x600 (pitch 1024)
(**) I810(0): *Built-in mode "800x600"
(**) I810(0): *Built-in mode "640x480"
(==) I810(0): DPI set to (75, 75)



我的猜测是硬件制造商在显卡BIOS把LCD设置成800x600 的了,于是i810认为“(II) I810(0): Not using mode "1024x768" (no mode of this name)”,所以在xorg.conf里不管如何改设置,它只是简单的不与理会,我写了modeline还是没用啊!

我现在只有试试换成兄弟们的显卡bios能不能上1024x768分辨率。

linky_fan 发表于 2005-5-10 12:46:18


LCD1024: Using hsync range of 28.00-49.00 kHz
(II) I810(0): LCD1024: Using vrefresh range of 43.00-72.00 Hz

没变??

iamathinker 发表于 2005-5-10 17:31:10

是的,没变!它不理我的xorg.conf的设置。

linky_fan 发表于 2005-5-10 18:49:02

你用的是什么牌子的本本, 迅驰的?

iamathinker 发表于 2005-5-11 10:52:13

联想1+1的笔记本,L510
cpu为pentium4-M 1.5G

linky_fan 发表于 2005-5-11 13:31:47

试试livecd起动, 看看可不可以上1024x768

iamathinker 发表于 2005-5-12 07:47:55

我试过了,好像叫做knipx的什么livecd,只能到800x600
页: [1] 2
查看完整版本: 显卡Intel 852的兄弟给一份显卡BIOS映像文件吧!