Advertisement
Guest User

xorg.conf with IgnoreABI to fix nvidia ABI 7.0 error

a guest
Apr 16th, 2010
1,432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "Layout0"
  3. Screen 0 "Screen0" 0 0
  4. InputDevice "Keyboard0" "CoreKeyboard"
  5. InputDevice "Mouse0" "CorePointer"
  6. EndSection
  7.  
  8. Section "Files"
  9. EndSection
  10.  
  11. Section "Module"
  12. Load "dbe"
  13. Load "extmod"
  14. Load "type1"
  15. Load "freetype"
  16. Load "glx"
  17. EndSection
  18.  
  19. Section "ServerFlags"
  20. # Uncomment the following option to reenable kbd/mouse driver input sections.
  21. # Otherwise evdev driver is used.
  22. #Option "AutoAddDevices" "off"
  23. Option "Xinerama" "0"
  24. Option "ignoreABI" " on"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. # generated from default
  29. Identifier "Mouse0"
  30. Driver "mouse"
  31. Option "Protocol" "auto"
  32. Option "Device" "/dev/psaux"
  33. Option "Emulate3Buttons" "no"
  34. Option "ZAxisMapping" "4 5"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38. # generated from default
  39. Identifier "Keyboard0"
  40. Driver "kbd"
  41. EndSection
  42.  
  43. Section "Monitor"
  44. # HorizSync source: edid, VertRefresh source: edid
  45. Identifier "Monitor0"
  46. VendorName "Unknown"
  47. ModelName "Toshiba Internal LCD"
  48. HorizSync 54.0 - 56.0
  49. VertRefresh 59.0 - 61.0
  50. Option "DPMS"
  51. EndSection
  52.  
  53. Section "Device"
  54. Identifier "Device0"
  55. Driver "nvidia"
  56. VendorName "NVIDIA Corporation"
  57. BoardName "Quadro NVS 160M"
  58. Option "RenderAccel"
  59. Option "NoLogo"
  60. Option "NvAGP" "1"
  61. Option "PixmapCacheSize" "1000000"
  62. Option "AllowSHMPixmaps" "1"
  63. #Option "BackingStore" "true"
  64. EndSection
  65.  
  66. Section "Screen"
  67. Identifier "Screen0"
  68. Device "Device0"
  69. Monitor "Monitor0"
  70. DefaultDepth 24
  71. Option "TwinView" "1"
  72. Option "TwinViewXineramaInfoOrder" "DFP-0"
  73. Option "metamodes" "DFP-0: 1440x900_60 +0+0, DFP-2: 1920x1200_60 +1440+0"
  74. SubSection "Display"
  75. Depth 24
  76. EndSubSection
  77. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement