diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-12-16 15:21:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-12-16 15:21:41 +0000 |
commit | 9546bc08d6a6a20c5189e686d10c07062d6cd635 (patch) | |
tree | 224410fa6b274e5d307d11dce91c38fc3317e45e /perl-install | |
parent | 747c271571c5ab11581ac4f2a7202e6bc408f217 (diff) | |
download | drakx-9546bc08d6a6a20c5189e686d10c07062d6cd635.tar drakx-9546bc08d6a6a20c5189e686d10c07062d6cd635.tar.gz drakx-9546bc08d6a6a20c5189e686d10c07062d6cd635.tar.bz2 drakx-9546bc08d6a6a20c5189e686d10c07062d6cd635.tar.xz drakx-9546bc08d6a6a20c5189e686d10c07062d6cd635.zip |
- force to use static input devices again
(since the default in xorg has changed)
otherwise keyboard doesn't work, since we don't have hal to handle automatic
input devices
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/install/gtk.pm | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 0ef1875b4..dadeb10be 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- force to use static input devices again + (since the default in xorg has changed) + Version 11.74 - 16 December 2008 - fix build with latest X.org diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index ef3165543..6aa6a8c95 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -264,6 +264,10 @@ sub createXconf { if ($Driver) { output($file, sprintf(<<'END', $mouse_type, $Driver, $Driver eq 'fbdev' ? '"default"' : '"800x600" "640x480"')); +Section "ServerFlags" + Option "AutoAddDevices" "False" +EndSection + Section "Files" FontPath "/usr/share/fonts:unscaled" EndSection |