summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-31 21:22:44 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-31 21:22:44 +0000
commiteccec293428b337a73029dce67da2371ff983bec (patch)
treee87478f6b01af2c86ac2a278481dd30a45448505
parent6c44b0b3252152f060e7acb975390ec6d21c7293 (diff)
downloaddrakx-backup-do-not-use-eccec293428b337a73029dce67da2371ff983bec.tar
drakx-backup-do-not-use-eccec293428b337a73029dce67da2371ff983bec.tar.gz
drakx-backup-do-not-use-eccec293428b337a73029dce67da2371ff983bec.tar.bz2
drakx-backup-do-not-use-eccec293428b337a73029dce67da2371ff983bec.tar.xz
drakx-backup-do-not-use-eccec293428b337a73029dce67da2371ff983bec.zip
what is needed for usbmouse is "hid mousedev usbmouse" not the weird "serial_usb"
-rwxr-xr-xperl-install/standalone/mousedrake4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/mousedrake b/perl-install/standalone/mousedrake
index 2399f54bf..d3cc06e6c 100755
--- a/perl-install/standalone/mousedrake
+++ b/perl-install/standalone/mousedrake
@@ -51,8 +51,8 @@ if (!$mouse || !$::auto) {
if ($mouse->{device} eq "usbmouse") {
modules::mergein_conf('/etc/modules.conf') if -r '/etc/modules.conf';
- modules::load_category('bus/usb') or die _("no serial_usb found\n");
- eval { modules::load('serial_usb') };
+ modules::load_category('bus/usb') or die 'no usb bus found\n';
+ modules::load(qw(hid mousedev usbmouse));
}
$mouse->{XEMU3} = 'yes' if $mouse->{nbuttons} < 3 && (!$::noauto || $in->ask_yesorno('', _("Emulate third button?"), 1));