summaryrefslogtreecommitdiffstats
path: root/mouse.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-13 18:56:25 +0000
committerMatt Wilson <msw@redhat.com>1999-09-13 18:56:25 +0000
commit770220d29752c637fda5ecc4072efce161b1499c (patch)
tree6a18d86ee6429d60d3c0340e499db8913a75f003 /mouse.py
parent5da684416bce7bae54b566ceee34198dcdc2e8a6 (diff)
downloadanaconda-770220d29752c637fda5ecc4072efce161b1499c.tar.gz
anaconda-770220d29752c637fda5ecc4072efce161b1499c.tar.xz
anaconda-770220d29752c637fda5ecc4072efce161b1499c.zip
jj patches, fixups for upgrade lilo stuff
Diffstat (limited to 'mouse.py')
-rw-r--r--mouse.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/mouse.py b/mouse.py
index 773e3ced1..23f61646c 100644
--- a/mouse.py
+++ b/mouse.py
@@ -61,6 +61,8 @@ class Mouse (SimpleConfigFile):
("MMSeries", "MMSeries", "ttyS", 1),
"MM - HitTablet (serial)" :
("MMHitTab", "MMHittab", "ttyS", 1),
+ "Sun Mouse":
+ ("sun", "sun", "sunmouse", 0),
}
# XXX fixme - externalize
@@ -92,7 +94,9 @@ class Mouse (SimpleConfigFile):
if (list):
(device, module, desc) = list[0]
- if device == "psaux":
+ if device == "sunmouse":
+ self.set("Sun Mouse", 0)
+ elif device == "psaux":
self.set("Generic - 3 Button Mouse (PS/2)", 0)
else:
self.set("Generic - 2 Button Mouse (serial)", 1)