diff options
-rw-r--r-- | perl-install/harddrake/data.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index c2662cdfa..f49e3b2eb 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -307,7 +307,16 @@ our @tree = string => N("USB controllers"), icon => "usb.png", configurator => "", - detector => sub { f(grep { $_->{media_type} =~ /SERIAL_USB|Hub/ } @devices) }, + detector => sub { f(grep { $_->{media_type} eq 'SERIAL_USB' } @devices) }, + checked_on_boot => 0, + }, + + { + class => "USB_HUB", + string => N("USB ports"), + icon => "usb.png", + configurator => "", + detector => sub { f(grep { $_->{media_type} =~ /Hub/ } @devices) }, checked_on_boot => 0, }, |