diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/pkgs.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index cc2622c7d..c189d6cbf 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -3,6 +3,8 @@ "Change partition type" dialog in expert mode due to ellipsizing - harddrake2: o detect network and graphical driver packages too +- harddrake2 / remove-unused-packages: + o fix network packages detection - list btusb instead of hci_usb in bus/bluetooth (renamed in 2.6.27) Version 11.46 - 17 September 2008 diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index d26640622..3d1a959aa 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -183,7 +183,7 @@ sub detect_network_drivers { @network_settings = @all_settings; } else { my @connections = $type->get_connections(automatic_only => 1, fast_only => 1); - @network_settings = map { @{$_->get_thirdparty_settings || []} } @connections; + @network_settings = map { network::thirdparty::find_settings(\@all_settings, $_->get_driver) } @connections; } foreach my $settings (@network_settings) { foreach (@network::thirdparty::thirdparty_types) { |