diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-29 17:33:24 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-29 17:33:24 +0000 |
commit | 8faccd9bf7d915a9e2c5dda466e688b1fbbc8cfc (patch) | |
tree | 62096a58d2b437fdc00b77304f1b0f783ead13d4 | |
parent | 0e3d05a0c937817c8374d6ab93c1c6779a337ed4 (diff) | |
download | anaconda-8faccd9bf7d915a9e2c5dda466e688b1fbbc8cfc.tar.gz anaconda-8faccd9bf7d915a9e2c5dda466e688b1fbbc8cfc.tar.xz anaconda-8faccd9bf7d915a9e2c5dda466e688b1fbbc8cfc.zip |
...
-rw-r--r-- | xf86config.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/xf86config.py b/xf86config.py index 754a97037..32d40bb1e 100644 --- a/xf86config.py +++ b/xf86config.py @@ -31,6 +31,14 @@ class XF86Config: self.keyRules = "xfree86" self.keyModel = "pc101" self.keyLayout = "us" + # XXX temp hack to get GUI installs working on sparc + try: + f = open ("/dev/kbd", "r") + f.close() + self.keyRules = "sun" + self.keyModel = "type5" + except: + pass self.keyVariant = "" self.keyOptions = "" |