diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-18 14:48:46 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-18 14:48:46 +0000 |
commit | 07333b30830de204c54d4930b0cbfaf4378b5c2e (patch) | |
tree | d4a9240d0792cd4daea45a34d7d2614f1e23164a | |
parent | 60c518a248ee800adec84a7d0aa6473dbf2cfa69 (diff) | |
download | drakx-07333b30830de204c54d4930b0cbfaf4378b5c2e.tar drakx-07333b30830de204c54d4930b0cbfaf4378b5c2e.tar.gz drakx-07333b30830de204c54d4930b0cbfaf4378b5c2e.tar.bz2 drakx-07333b30830de204c54d4930b0cbfaf4378b5c2e.tar.xz drakx-07333b30830de204c54d4930b0cbfaf4378b5c2e.zip |
harddrake2: detect network and graphical driver packages too
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/harddrake2 | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index e795fb7ef..cc2622c7d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,8 @@ - diskdrake: o fix file system type drop down list showing most types as "..." in "Change partition type" dialog in expert mode due to ellipsizing +- harddrake2: + o detect network and graphical driver packages too - 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/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 2087f1b09..1325d767d 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -504,7 +504,7 @@ $tree->signal_connect(realize => sub { $tree->get_selection->select_path(Gtk2::T $SIG{CHLD} = undef; #local $SIG{CHLD} = sub {}; - if (my @packages = difference2([ pkgs::detect_rpmsrate_hardware_packages() ], [ qw(ati.2 dmraid gnome-alsamixer mdadm xmms-alsa) ])) { + if (my @packages = difference2([ pkgs::detect_hardware_packages($in->do_pkgs) ], [ qw(ati.2 dmraid gnome-alsamixer mdadm xmms-alsa) ])) { @packages = grep { !$in->do_pkgs->is_installed($_) } @packages; # workarounding do_pkgs->is_available() destroying $_: |