diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 14:03:53 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 14:03:53 +0000 |
commit | 968a17baf66e8fa1c51480c854ed639567ffc159 (patch) | |
tree | bfab719b2b019040311557544e948046e99d7f65 /perl-install/modules.pm | |
parent | d1397a722aec6c8704938cfaf82fca1db3baf9b3 (diff) | |
download | drakx-968a17baf66e8fa1c51480c854ed639567ffc159.tar drakx-968a17baf66e8fa1c51480c854ed639567ffc159.tar.gz drakx-968a17baf66e8fa1c51480c854ed639567ffc159.tar.bz2 drakx-968a17baf66e8fa1c51480c854ed639567ffc159.tar.xz drakx-968a17baf66e8fa1c51480c854ed639567ffc159.zip |
handle wireless modules
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 0091ba2da..952a5d375 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -66,7 +66,7 @@ sub load { @l = difference2([ uniq(@l) ], [ map { my $s = $_; $s =~ s/_/-/g; $s, $_ } loaded_modules() ]) or return; my $network_module = do { - my ($network_modules, $other) = partition { module2category($_) =~ m,network/(main|gigabit|usb), } @l; + my ($network_modules, $other) = partition { module2category($_) =~ m,network/(main|gigabit|usb|wireless), } @l; if (@$network_modules > 1) { # do it one by one load($_) foreach @$network_modules; |