[PC-BSD Commits] r4936 - in pcbsd/trunk/XGUISource/resources: cardDetect conf templates/header
svn at pcbsd.org
svn at pcbsd.org
Tue Nov 10 13:16:05 PST 2009
Author: kris
Date: 2009-11-10 13:16:05 -0800 (Tue, 10 Nov 2009)
New Revision: 4936
Modified:
pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.compat
pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.default
pcbsd/trunk/XGUISource/resources/conf/xorg.conf.basic
pcbsd/trunk/XGUISource/resources/templates/header/ati.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/intel-3d-enable.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/intel.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/mga-3d-enable.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/nvidia.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/radeon-3d-enable.xorg.conf
pcbsd/trunk/XGUISource/resources/templates/header/xorg.conf.generic
Log:
Added back in ServerFlags for xorg to fix issues with not working keyboard / mouse
Modified: pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.compat
===================================================================
--- pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.compat 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.compat 2009-11-10 21:16:05 UTC (rev 4936)
@@ -9,10 +9,10 @@
Section "ServerFlags"
Option "DisableVidModeExtension" "True"
- Option "AutoAddDevices" "False"
- Option "AllowEmptyInput" "Off"
#Option "NoTrapSignals" "True"
#Option "DisableModInDev" "True"
+ Option "AutoAddDevices" "Off"
+ Option "AllowEmptyInput" "Off"
EndSection
Section "Files"
Modified: pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.default
===================================================================
--- pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.default 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/cardDetect/XF86Config.default 2009-11-10 21:16:05 UTC (rev 4936)
@@ -9,10 +9,10 @@
Section "ServerFlags"
Option "DisableVidModeExtension" "True"
- Option "AutoAddDevices" "False"
- Option "AllowEmptyInput" "Off"
#Option "NoTrapSignals" "True"
#Option "DisableModInDev" "True"
+ Option "AutoAddDevices" "Off"
+ Option "AllowEmptyInput" "Off"
EndSection
Section "Files"
Modified: pcbsd/trunk/XGUISource/resources/conf/xorg.conf.basic
===================================================================
--- pcbsd/trunk/XGUISource/resources/conf/xorg.conf.basic 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/conf/xorg.conf.basic 2009-11-10 21:16:05 UTC (rev 4936)
@@ -10,6 +10,10 @@
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib"
ModulePath "/usr/local/lib/xorg/modules"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/ati.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/ati.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/ati.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -8,6 +8,10 @@
Option "Clone" "off"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/intel-3d-enable.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/intel-3d-enable.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/intel-3d-enable.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -9,6 +9,11 @@
Option "AIGLX" "true"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/intel.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/intel.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/intel.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -8,6 +8,11 @@
Option "Clone" "off"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/mga-3d-enable.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/mga-3d-enable.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/mga-3d-enable.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -8,6 +8,11 @@
Option "Clone" "off"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/nvidia.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/nvidia.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/nvidia.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -7,6 +7,11 @@
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/radeon-3d-enable.xorg.conf
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/radeon-3d-enable.xorg.conf 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/radeon-3d-enable.xorg.conf 2009-11-10 21:16:05 UTC (rev 4936)
@@ -8,6 +8,11 @@
Option "Clone" "off"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
Modified: pcbsd/trunk/XGUISource/resources/templates/header/xorg.conf.generic
===================================================================
--- pcbsd/trunk/XGUISource/resources/templates/header/xorg.conf.generic 2009-11-10 21:11:16 UTC (rev 4935)
+++ pcbsd/trunk/XGUISource/resources/templates/header/xorg.conf.generic 2009-11-10 21:16:05 UTC (rev 4936)
@@ -8,6 +8,11 @@
Option "Clone" "off"
EndSection
+Section "ServerFlags"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "Off"
+EndSection
+
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
More information about the Commits
mailing list