diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-23 15:58:57 +0000 |
commit | 12f60f7718cd07ff5fa550da97b14c9a84f259df (patch) | |
tree | ecfc52e57b25a945a0f8c657de22092a4ec2fd93 /perl-install/mouse.pm | |
parent | ac30b4c6f5f2de8dbe4f72e58314d5042de9f719 (diff) | |
download | drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.gz drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.bz2 drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.tar.xz drakx-12f60f7718cd07ff5fa550da97b14c9a84f259df.zip |
mods to create/move image, to /export for PPC, use vmlinux for PPC
prepend of_dev to initrd stanza in yaboot.conf
add 1-button mouse for PPC
Diffstat (limited to 'perl-install/mouse.pm')
-rw-r--r-- | perl-install/mouse.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index 815d64f7c..ec8571f39 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -63,7 +63,8 @@ my %mice = __("busmouse") => [ [ arch() eq 'ppc' ? 'adbmouse' : ('atibm', 'inportbm', 'logibm') ], - [ [ 2, 'Busmouse', 'BusMouse', __("2 buttons") ], + [ if_(arch() eq 'ppc', [ 1, 'Busmouse', 'BusMouse', __("1 button") ]), + [ 2, 'Busmouse', 'BusMouse', __("2 buttons") ], [ 3, 'Busmouse', 'BusMouse', __("3 buttons") ], ]], @@ -199,7 +200,7 @@ sub detect() { "USB|Generic" : # No need to search for an ADB mouse. If I did, the PPC kernel would # find one whether or not I had one installed! So.. default to it. - "busmouse|2 buttons"); + "busmouse|1 button"); } if ($::isStandalone) { |