summaryrefslogtreecommitdiffstats
path: root/xserver.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-11 17:06:54 +0000
committerMatt Wilson <msw@redhat.com>1999-09-11 17:06:54 +0000
commit8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc (patch)
tree1aed2df588839c372ffccd4c3af2407c8ca9cc4c /xserver.py
parent506bf116088fafdcafbfad3c0aedba4a62f958a8 (diff)
downloadanaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.tar.gz
anaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.tar.xz
anaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.zip
fixed
Diffstat (limited to 'xserver.py')
-rw-r--r--xserver.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/xserver.py b/xserver.py
index 4c2d1572a..23dc5251a 100644
--- a/xserver.py
+++ b/xserver.py
@@ -26,6 +26,13 @@ def startX():
if mouseDev == 'psaux':
mouseProtocol = "PS/2"
mouseEmulate = 0
+ # kickstart some ps/2 mice. Blame the kernel
+ try:
+ f = open ('/dev/psaux')
+ f.write ('1')
+ f.close
+ except:
+ pass
else:
mouseProtocol = "Microsoft"
mouseEmulate = 1