diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-09-14 06:45:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-09-14 06:45:21 +0000 |
commit | 72147f520510577f8c41d6a232e695c5eaa4e4e9 (patch) | |
tree | 685b913f422d41b88fbdcf301492960b1621db42 /perl-install/harddrake | |
parent | 6dfcb194e6fd117708bb0d5024b78ab7123c1e82 (diff) | |
download | drakx-72147f520510577f8c41d6a232e695c5eaa4e4e9.tar drakx-72147f520510577f8c41d6a232e695c5eaa4e4e9.tar.gz drakx-72147f520510577f8c41d6a232e695c5eaa4e4e9.tar.bz2 drakx-72147f520510577f8c41d6a232e695c5eaa4e4e9.tar.xz drakx-72147f520510577f8c41d6a232e695c5eaa4e4e9.zip |
fix detecting some memory card readers as unknown
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index d612f9084..c9bea4e1e 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -203,7 +203,7 @@ our @tree = string => N("USB Mass Storage Devices"), icon => "usb.png", configurator => "", - detector => sub { f(grep { member($_->{driver}, qw(usb_storage ub)) } @devices) }, + detector => sub { f(grep { member($_->{driver}, qw(usb_storage ub Removable:memory_card)) } @devices) }, checked_on_boot => 0, }, |