Advertisement
Guest User

Untitled

a guest
Nov 24th, 2011
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. LSPCI:
  2.  
  3. 00:02.0 VGA compatible controller: Intel Corporation 82G33/G31 Express Integrated Graphics Controller (rev 10)
  4. 03:01.0 Display controller: Silicon Motion, Inc. SM501 VoyagerGX Rev. AA (rev c0)
  5.  
  6.  
  7. Xorg.conf:
  8.  
  9.  
  10. # Files Section #
  11.  
  12. Section "Files"
  13.         ModulePath      "/usr/local/lib/xorg/modules"
  14.         ModulePath      "/usr/lib/xorg/modules"
  15. EndSection
  16.  
  17. # ServerFlags Section#
  18.  
  19. Section "ServerFlags"
  20. #       Option  "Xinerama"      "off"
  21. #       Option  "Clone"         "off"
  22. #       Option  "DontVTSwitch"  "on"
  23.         #Option "DontZap"       "on"
  24.         Option  "IgnoreABI"   "on"
  25.         Option  "AutoAddDevices"   "false"
  26. EndSection
  27.  
  28. # Module Section#
  29.  
  30. Section "Module"
  31.         Load "xaa"
  32.         Load "vgahw"
  33.         Load "extmod"
  34.         SubSection "extmod"
  35.                 Option "omit XFree86-DGA"
  36.         EndSubSection
  37.         Load "glx"
  38.         Load "dbe"
  39.         Load "freetype"
  40.         Load "record"
  41. EndSection
  42.  
  43. # Device Section#
  44.  
  45. Section "Device"
  46.         Identifier "Videocard0"
  47.         Driver "intel"
  48.         VendorName "Intel 82G33/G31"
  49.         BoardName "Intel 82G33/G31"
  50.         BusID "PCI:0:2:0"
  51.         Option "AccelMethod" "XAA"
  52.         Option "SWCursor" "on"
  53.         Option "HWCursor" "off"
  54. EndSection      
  55. Section "Device"
  56.     Identifier "Videocard1"
  57.         Driver "siliconmotion"
  58.         VendorName "ThinNetworks TN-502"
  59.         BoardName "ThinNetworks TN-502"
  60.         BusID "PCI:3:1:0"
  61.         Option "SWCursor" "on"
  62.         Option "HWCursor" "off"
  63. EndSection
  64.  
  65. # Monitor Section #
  66.  
  67. Section "Monitor"
  68.         Identifier "Monitor0"
  69.         VendorName "712Sa"
  70.         ModelName "AOC1712"
  71.         HorizSync 30-83
  72.         VertRefresh 55-75
  73.         ModeLine "1280x1024" 135 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
  74. EndSection
  75. Section "Monitor"
  76.         Identifier "Monitor1"
  77.         Modeline "600x400_50.0" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
  78.         Option "PreferredMode" "800x600_60.0"
  79. EndSection
  80.  
  81.  
  82. # Screen Section #
  83.  
  84. Section "Screen"
  85.         Identifier "Screen0"
  86.         Device "Videocard0"
  87.         Monitor "Monitor0"
  88.         DefaultDepth 16
  89.         SubSection "Display"
  90.                 Depth 8
  91.                 Modes "1280x1024"
  92.         EndSubSection
  93.         SubSection "Display"
  94.                 Depth 15
  95.                 Modes "1280x1024"
  96.         EndSubSection
  97.         SubSection "Display"
  98.                 Depth 16
  99.                 Modes "1280x1024"
  100.         EndSubSection
  101.         SubSection "Display"
  102.                 Depth 24
  103.                 Modes "1280x1024"
  104.         EndSubSection
  105. EndSection
  106.  
  107. Section "Screen"
  108.         Identifier "Screen1"
  109.         Device "Videocard1"
  110.         Monitor "Monitor1"
  111.         DefaultDepth 8
  112.         SubSection "Display"
  113.                 Depth 4
  114.                 Modes "1024x768"
  115.         EndSubSection
  116.         SubSection "Display"
  117.                 Depth 15
  118.                 Modes "1024x768"
  119.         EndSubSection
  120.         SubSection "Display"
  121.                 Depth 16
  122.                 Modes "1024x768"
  123.         EndSubSection
  124.         SubSection "Display"
  125.                 Depth 24
  126.                 Modes "1024x768"
  127.         EndSubSection
  128. EndSection
  129. # InputDevice Section #
  130.  
  131. Section "InputDevice"
  132.         Identifier "Keyboard0"
  133.         Driver "evdev"
  134.         Option "Device" "/dev/input/event3"
  135. EndSection
  136. Section "InputDevice"
  137.         Identifier "Keyboard1"
  138.         Driver "evdev"
  139.         Option "Device" "/dev/input/event4"
  140. EndSection
  141.  
  142. Section "InputDevice"
  143.         Identifier  "Mouse0"
  144.         Driver      "evdev"
  145.         Option      "Device" "/dev/input/event6"
  146.         Option      "ZAxisMapping" "4 5"
  147. EndSection
  148. Section "InputDevice"
  149.         Identifier  "Mouse1"
  150.         Driver      "evdev"
  151.         Option      "Device" "/dev/input/event8"
  152.         Option      "ZAxisMapping" "4 5"
  153. EndSection
  154.  
  155. # ServerLayout Section #
  156.  
  157. Section "ServerLayout"
  158.         Identifier     "seat0"
  159.         Screen  "Screen0"
  160.         InputDevice     "Keyboard1"     "CoreKeyboard"
  161.         InputDevice     "Mouse1"        "CorePointer"
  162. EndSection
  163. Section "ServerLayout"
  164.         Identifier     "seat1"
  165.         Screen  "Screen1"
  166.         InputDevice     "Keyboard0"     "CoreKeyboard"
  167.         InputDevice     "Mouse0"        "CorePointer"
  168. EndSection
  169.  
  170.  
  171.  
  172.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement