diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-28 16:43:57 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-28 16:43:57 +0000 |
commit | 56d9243f3867ef4f95a0388710b313183b697f24 (patch) | |
tree | 18647ae9d16b0536000fbb03a4472e8a53f06cd7 /anaconda | |
parent | bb4943a4857cb4a50ad12bd94d4bd9ad52900ada (diff) | |
download | anaconda-56d9243f3867ef4f95a0388710b313183b697f24.tar.gz anaconda-56d9243f3867ef4f95a0388710b313183b697f24.tar.xz anaconda-56d9243f3867ef4f95a0388710b313183b697f24.zip |
more from jj
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -217,6 +217,15 @@ if keymap: instClass.addToSkipList("keyboard") instClass.setKeyboard(keymap) +if iutil.getArch() == "sparc": + import kudzu + mice = kudzu.probe (kudzu.CLASS_MOUSE, kudzu.BUS_UNSPEC, kudzu.PROBE_ONE); + if mice: + (mouseDev, driver, descr) = mice[0] + if mouseDev == 'sunmouse': + instClass.addToSkipList("mouse") + instClass.setMouseType("Sun - Mouse", "sunmouse") + try: todo = ToDo(intf, method, rootPath, installSystem = installPackages, setupFilesystems = setupFilesystems, mouse = mouseInfo, |