Config double écran

Top Page

Reply to this message
Author: Frédéric
Date:  
To: ML Guilde
Subject: Config double écran
Re...

Les pilotes de ma Matrox G400 n'étant jamais à jour par rapport à Xorg, je
ne peux plus faire marcher le deuxième écran. J'ai donc ajouté une carte
PCI, une ATI MACH64 GX. Mais je n'arrive pas non plus à la faire marcher.

Voici les infos :

# lspci
...
01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA G400/G450
02:07.0 VGA compatible controller: ATI Technologies Inc 210888GX [Mach64 GX]
...

# cat /var/log/Xorg.0.log
...
(--) PCI:*(1:0:0) Matrox Graphics, Inc. G400/G450 rev 4, Mem @ 
0xf8000000/25, 0xfe6fc000/14, 0xfd800000/23, BIOS @ 0x80000000/16
(--) PCI: (2:7:0) ATI Technologies Inc 210888GX [Mach64 GX] rev 1, Mem @ 
0xfc800000/23
...
(II) ATI:  Candidate "Device" section "Device[1]".
(II) ATI:  Shared PCI Mach64 in slot 2:7:0 with sparse PIO base 0x02EC 
detected.
(II) ATI:  VGA Wonder at I/O port 0x01CE detected.
(II) ATI:  Shared PCI Mach64 in slot 2:7:0 assigned to active "Device" 
section "Device[1]".
...
(II) Loading sub module "atimisc"
(II) LoadModule: "atimisc"
(II) Loading /usr/X11R6/lib/modules/drivers/atimisc_drv.so
(II) Module atimisc: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 6.6.3
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 1.0
(EE) Screen 1 deleted because of no matching config section.
(II) UnloadModule: "ati"
(II) UnloadModule: "atimisc"
(II) Unloading /usr/X11R6/lib/modules/drivers/atimisc_drv.so
...


J'ai joint le fichier xorg.conf. Que veux dire le "no matching config
section" ? Où me goure-je ?

Merci d'avance.

--
Frédéric

http://www.gbiloba.org
# Config pour Matrox G400 en DualHead
#
Section "Files"
  FontPath      "unix/:7100"
  FontPath      "/usr/X11R6/lib/X11/fonts/75dpi"
  FontPath      "/usr/X11R6/lib/X11/fonts/100dpi"
  FontPath      "/usr/X11R6/lib/X11/fonts/Speedo"
  FontPath      "/usr/X11R6/lib/X11/fonts/Type1"
  FontPath      "/usr/X11R6/lib/X11/fonts/misc"
  ModulePath      "/usr/X11R6/lib/modules"
  RgbPath          "/etc/X11/rgb"
EndSection


Section "ServerFlags"
  Option      "AllowMouseOpenFail"
EndSection


Section "Module"
  Load    "GLcore"
  Load    "bitmap"
  Load    "dbe"
  Load    "ddc"
  Load    "dri"
  Load    "extmod"
  Load    "freetype"
  Load    "glx"
  Load    "int10"
#  Load    "pex5"
  Load    "record"
  Load    "speedo"
  Load    "type1"
  Load    "vbe"
#  Load    "xie"
#  Load    "mga_hal"
EndSection


Section "InputDevice"
  Driver        "keyboard"
  Identifier    "Keyboard[0]"
#  Option        "Device"        "/dev/input/event0"
#  Option        "Protocol"      "Standard"
  Option        "CoreKeyboard"
#  Option        "XkbKeyCodes"   "xfree86"
  Option        "XkbLayout"     "fr"
#  Option        "XkbRules"      "xfree86"
#  Option        "XkbModel"      "pc105"
EndSection


Section "InputDevice"
  Driver        "mouse"
  Identifier    "Mouse[0]"
  Option        "ButtonNumber"  "5"
  Option        "Device"        "/dev/psaux"
  Option        "Name"          "AutoDetected"
  Option        "Protocol"      "imps/2"
  Option        "Vendor"        "AutoDetected"
  Option        "ZAxisMapping"  "4 5"
EndSection


Section "InputDevice"
   Identifier      "Mouse[1]"
   Driver          "mouse"
   Option          "Device"                "/dev/input/mice"
   Option          "SendCoreEvents"        "true"
   Option          "Protocol"              "imps/2"
   Option          "ZAxisMapping"          "4 5"
   Option          "Buttons"               "5"
EndSection


Section "Monitor"
  Identifier    "Monitor[0]"
  HorizSync     24-80
  VertRefresh   56-75
  Option        "DPMS"
  Gamma         1.00 1.00 1.00
EndSection


Section "Screen"
  Identifier    "Screen[0]"
  DefaultDepth  24
  DefaultFbBpp  32
  SubSection "Display"
    Depth       16
    Modes       "1280x1024"
  EndSubSection
  SubSection    "Display"
    Depth       24
    Modes       "1280x1024"
  EndSubSection
  Device        "Device[0]"
  Monitor       "Monitor[0]"
EndSection


Section "Screen"
  Identifier    "Screen[1]"
  DefaultDepth  8
  SubSection "Display"
    Depth       8
    Modes       "1280x1024"
  EndSubSection
  SubSection "Display"
    Depth       16
    Modes       "1280x1024"
  EndSubSection
  SubSection    "Display"
    Depth       24
    Modes       "1280x1024"
  EndSubSection
  Device        "Device[1]"
  Monitor       "Monitor[0]"
EndSection


Section "Device"
  BoardName      "MGA G400"
  BusID          "1:0:0"
  Driver          "mga"
  Identifier      "Device[0]"
  Screen          0
  VendorName      "Matrox"
  Videoram      32768
  Option    "XaaNoScreenToScreenColorExpandFill"
#  Option    "AGPMode"        "1"
EndSection


Section "Device"
  BoardName     "MACH64 GX"
#  BusID         "2:7:0"
  Driver        "ati"
  Identifier    "Device[1]"
  Screen        1
  VendorName    "ATI"
  Videoram      8192
EndSection


Section "ServerLayout"
  Identifier      "Layout[all]"
  InputDevice    "Keyboard[0]"     "CoreKeyboard"
  InputDevice    "Mouse[0]"        "CorePointer"
  Option        "Clone"         "off"
  Option         "Xinerama"         "on"
  Screen        0                "Screen[0]"
  Screen        1                "Screen[1]"    LeftOf    "Screen[0]"
EndSection


Section "DRI"
  Group      "video"
  Mode       0660
EndSection