summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/scanner.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 24c44f14e..19c6b9803 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- scannerdrake:
+ o do not reject scanners handled by 'usbcore' driver
+
Version 12.32 - 23 April 2009
- don't set umask=0 by default on windows partitions in 'secure' level.
diff --git a/perl-install/scanner.pm b/perl-install/scanner.pm
index 6fa73b18e..81b9ab3c8 100644
--- a/perl-install/scanner.pm
+++ b/perl-install/scanner.pm
@@ -373,7 +373,7 @@ sub detect {
@res = grep { ! $_->{configured} } @res;
}
# blacklist device that have a driver b/c of buggy sane-find-scanner:
- return grep { member($_->{val}{driver}, qw(scanner unknown)) } @res;
+ return grep { member($_->{val}{driver}, qw(scanner unknown usbcore)) } @res;
}
sub resolve_symlinks {