diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-10 14:33:31 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-10 14:33:31 +0000 |
commit | 3db371938195669fd2843d1d2f5ccbc449af718d (patch) | |
tree | cdd13fbc815fe6b64f57b33c2a04dec62e597e1a /perl-install/detect_devices.pm | |
parent | c2840b163c8850de05589f7541484ec04d347d8b (diff) | |
download | drakx-3db371938195669fd2843d1d2f5ccbc449af718d.tar drakx-3db371938195669fd2843d1d2f5ccbc449af718d.tar.gz drakx-3db371938195669fd2843d1d2f5ccbc449af718d.tar.bz2 drakx-3db371938195669fd2843d1d2f5ccbc449af718d.tar.xz drakx-3db371938195669fd2843d1d2f5ccbc449af718d.zip |
fix input devices detection in rpmsrate (broken for 3 years, #43721)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 46ebbe6b1..7948cc649 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -907,7 +907,7 @@ sub dmi_probe() { sub probeall() { return if $::noauto; - pci_probe(), usb_probe(), firewire_probe(), pcmcia_probe(), dmi_probe(); + pci_probe(), usb_probe(), firewire_probe(), pcmcia_probe(), dmi_probe(), getInputDevices_and_usb(); } sub probeall_update_cache() { return if $::noauto; |