diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/network/connection/wireless.pm | 24 |
2 files changed, 12 insertions, 13 deletions
@@ -2,6 +2,7 @@ - use "Help" instead of "Get Online Help" since the doc is local (thanks damsweb) - fix startup with XFCE (Tv, #31834) - disable autostart notifications of net_applet (Tv, #18965) +- add iwl3945/iwl4965 support to replace ipw3945 0.12: - fix check of nfs-utils-clients installation (Tv) diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index df1a210..5f57e1c 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -68,19 +68,17 @@ my @thirdparty_settings = ( }; } (2100, 2200)), - { - name => "ipw3945", - description => "Intel(R) PRO/Wireless 3945", - url => "http://ipw3945.sourceforge.net/", - firmware => { - package => "ipw3945-ucode", - test_file => "ipw3945.ucode", - }, - tools => { - package => "ipw3945d", - test_file => '/usr/sbin/ipw3945d', - }, - }, + (map { + { + name => "iwl${_}", + description => "Intel(R) PRO/Wireless ${_}", + url => "http://intellinuxwireless.org/", + firmware => { + package => "iwlwifi-${_}-ucode", + test_file => "iwlwifi-${_}.ucode", + }, + }; + } (3945, 4965)), { name => 'prism54', |