diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/thirdparty.pm | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/perl-install/network/thirdparty.pm b/perl-install/network/thirdparty.pm index 2110fc5f2..d18377e2a 100644 --- a/perl-install/network/thirdparty.pm +++ b/perl-install/network/thirdparty.pm @@ -138,20 +138,19 @@ my %network_settings = ( }, }, - (map { ( - "ipw${_}" => - { - matching => "ipw${_}", - description => "Intel(R) PRO/Wireless ${_}", - url => "http://ipw${_}.sourceforge.net/", - name => "ipw${_}", - firmware => - { - test_file => ($_ == 2100 ? "ipw2100-*.fw" : "ipw-*.fw"), - }, + (map { + { + matching => "ipw${_}", + description => "Intel(R) PRO/Wireless ${_}", + url => "http://ipw${_}.sourceforge.net/", + name => "ipw${_}", + firmware => + { + url => "http://ipw${_}.sourceforge.net/firmware.php", + test_file => ($_ == 2100 ? "ipw2100-*.fw" : "ipw-*.fw"), }, - ); - } (2100, 2200)), + } + } (2100, 2200)), { matching => 'prism54', |