From 34061a6d5814ec913c044861d5e6a3f38ac7ec9c Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Mon, 15 Sep 2003 16:08:12 +0000 Subject: Added workaround to make HP PSC 1xxx and OfficeJet 4xxx really working. --- perl-install/printer/main.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/perl-install/printer/main.pm b/perl-install/printer/main.pm index 6dab5afb7..d692f79d9 100644 --- a/perl-install/printer/main.pm +++ b/perl-install/printer/main.pm @@ -2186,6 +2186,17 @@ sub configure_hpoj { # Check if the device is really an HP multi-function device #my $libusb = 0; foreach my $libusb (0, 1) { + # Preliminary workaround to make the user-mode USB devices + # (LIDIL devices) installable as verification of the HPOJ + # settings of these devices does not work yet. The workaround + # will probably removed after Mandrake 9.2. + # Note: This workaround leaves out the checking for a photo + # memory card reader, but to my knowledge there are no LIDIL + # devices with card reader yet. + if ($libusb) { + $device_ok = 1; + next; + } # Do access via libusb/user mode only if we have a USB device next if ($libusb && ($bus ne "usb")); my $printermoduleunloaded = 0; -- cgit v1.2.1