diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-11 17:06:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-11 17:06:54 +0000 |
commit | 8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc (patch) | |
tree | 1aed2df588839c372ffccd4c3af2407c8ca9cc4c /xserver.py | |
parent | 506bf116088fafdcafbfad3c0aedba4a62f958a8 (diff) | |
download | anaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.tar.gz anaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.tar.xz anaconda-8f4fbe67c01dbb8693dadbd629cbbb50a2f632bc.zip |
fixed
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 7 |
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 |