diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 21:22:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-31 21:22:44 +0000 |
commit | eccec293428b337a73029dce67da2371ff983bec (patch) | |
tree | e87478f6b01af2c86ac2a278481dd30a45448505 /perl-install | |
parent | 6c44b0b3252152f060e7acb975390ec6d21c7293 (diff) | |
download | drakx-eccec293428b337a73029dce67da2371ff983bec.tar drakx-eccec293428b337a73029dce67da2371ff983bec.tar.gz drakx-eccec293428b337a73029dce67da2371ff983bec.tar.bz2 drakx-eccec293428b337a73029dce67da2371ff983bec.tar.xz drakx-eccec293428b337a73029dce67da2371ff983bec.zip |
what is needed for usbmouse is "hid mousedev usbmouse" not the weird "serial_usb"
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/mousedrake | 4 |
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)); |