Advertisement
CristianMarussi

Untitled

Nov 27th, 2013
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. # cat /etc/X11/xorg.conf
  2. ## Some basic settings to work with udev and give full screen
  3. ## control to X....many are already set by default...just in case ...
  4. ## ... i'd forget..:D
  5.  
  6. Section "ServerFlags"
  7. Option "AllowEmptyInput" "off"
  8. Option "AutoAddDevices" "off"
  9. Option "AutoEnableDevices" "on"
  10. Option "DontZap" "on"
  11. Option "DontVTSwitch" "on"
  12. Option "DontZoom" "on"
  13. ### This does NOT changes situation regarding X SEGFAULT
  14. # Option "EXANoUploadToScreen" "boolean"
  15. EndSection
  16.  
  17. ## USELESS
  18. ##
  19. ##Section "Module"
  20. ## Load "dbe"
  21. ## Load "extmod"
  22. ## Load "freetype"
  23. ## Load "glx"
  24. ## Load "dri"
  25. ##EndSection
  26. ##
  27.  
  28. Section "InputDevice"
  29. Identifier "Generic Keyboard"
  30. Driver "kbd"
  31. Option "XkbRules" "xorg"
  32. Option "XkbModel" "pc105"
  33. Option "XkbLayout" "us"
  34. EndSection
  35.  
  36. Section "InputDevice"
  37. Identifier "Configured Mouse"
  38. Driver "mouse"
  39. Option "CorePointer"
  40. EndSection
  41.  
  42. Section "InputDevice"
  43. Identifier "Dummy Keyboard"
  44. Driver "void"
  45. Option "CoreKeyboard"
  46. EndSection
  47.  
  48. Section "InputDevice"
  49. Identifier "Dummy Mouse"
  50. Driver "void"
  51. Option "CorePointer"
  52. EndSection
  53.  
  54. Section "Device"
  55. Identifier "i.MX Accelerated Framebuffer Device"
  56. Driver "vivante"
  57. Option "fbdev" "/dev/fb0"
  58. Option "vivante_fbdev" "/dev/fb0"
  59. Option "HWcursor" "false"
  60. Option "AccelMethod" "exa"
  61. EndSection
  62.  
  63.  
  64. Section "Device"
  65. Identifier "Framebuffer Device"
  66. Driver "fbdev"
  67. Option "fbdev" "/dev/fb0"
  68. Option "HWcursor" "false"
  69. EndSection
  70.  
  71.  
  72. Section "Monitor"
  73. Identifier "Configured Monitor"
  74. EndSection
  75.  
  76. Section "Screen"
  77. Identifier "Default Screen"
  78. Monitor "Configured Monitor"
  79. Device "i.MX Accelerated Framebuffer Device"
  80. # Device "Framebuffer Device"
  81. DefaultDepth 16
  82. EndSection
  83.  
  84. Section "ServerLayout"
  85. Identifier "Default Layout"
  86. Screen "Default Screen"
  87. Inputdevice "Dummy Keyboard"
  88. Inputdevice "Dummy Mouse"
  89. EndSection
  90.  
  91. Section "DRI"
  92. Mode 0666
  93. EndSection
  94.  
  95. #Section "Extensions"
  96. # Option "MIT-SHM" "Disable"
  97. #EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement