reopen 636259
retitle 636259 kernel-wedge: nic-wireless-modules missing
lib80211_crypt_{wep,ccmp,tkip}
reassign 636259 kernel-wedge 2.78
tags + patch
thanks
On Tuesday 02 August 2011, [email protected] wrote:
> Hi,
> Thank for the explanations, but i had a prompt with the intel chipset license
> agrement (i've plugged in my usb key included the firmware folder), and
> accepted it.
>
> I guessed at this time the module was loaded.
Given that I'm not familiar with d-i internals, I missed the later
firmware loading further down in the log.
However the rest of the log is revealing:
Aug 1 19:06:15 kernel: [ 114.245102] eth1: could not initialize WEP: load
module lib80211_crypt_wep
Aug 1 19:07:30 netcfg[4681]: INFO: buf = bssid=c0:3f:0e:48:77:6a ssid=tomate
id=0 mode=station pairwise_cipher=CCMP group_cipher=CCMP key_mgmt=WPA2-PSK
wpa_state=ASSOCIATED
Aug 1 19:07:39 main-menu[288]: (process:4680): SIOCSIWENCODE(95): Operation
not supported
Aug 1 19:07:39 main-menu[288]: (process:4680): SIOCSIWENCODE(95): Operation
not supported
Namely at least the encryption algorithms (lib80211_crypt_wep,
lib80211_crypt_ccmp and lib80211_crypt_tkip) needed by lib80211
are not available, maybe more.
An according patch against kernel-wedge 2.78-1-g419e47e git is
attached, while that will fix the obviously missing modules, there
may be more missing.
> Stefan Lippers-Hollmann <[email protected]> a écrit :
>
> Hi
>
> On Monday 01 August 2011, mathieu millot wrote:
> > Subject: wpasupplicant-udeb: ipw2200 WPA no connection established
> > Package: wpasupplicant-udeb
> > Version: 0.7.3-3.1
[...]
> > I've burned today i386 unstable netinstall (2011-08-01) and try to connect
> > to
> > my WPA-PSK network.
> > My intel chipset (ipw2200) can't get a connection (i've tried severals
> > times,
[...]
> > with and without turning on/off my wifi switch), but my rt2500usb key can
> > get
> > an ip.
[...]
> > I will do some more tests in few days on my new laptop (wifi chip unknow
> > yet),
> > and i have a spare Atheros AR58HB92 card.
[...]
Regards
Stefan Lippers-Hollmann
From 31d1bd6696ec1b7ef52f6fc1ef0e273bccc72772 Mon Sep 17 00:00:00 2001
From: Stefan Lippers-Hollmann <[email protected]>
Date: Tue, 2 Aug 2011 01:42:16 +0200
Subject: [PATCH] add lib80211 encryption algorithms
Add lib80211_crypt_{wep,ccmptkip} to nic-wireless-modules,
needed for e.g. ipw2x00 wlan modules.
Closes: #636259.
Signed-off-by: Stefan Lippers-Hollmann <[email protected]>
---
debian/changelog | 7 ++++++-
modules/nic-wireless-modules | 4 ++++
2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 0410aed..a6ad9f0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
kernel-wedge (2.79) UNRELEASED; urgency=low
+ [ Otavio Salvador ]
* add vmw_pvscsi and vmxnet3 kernels to nic and scsi packages to
support VMWare. Closes: #635478.
- -- Otavio Salvador <[email protected]> Tue, 26 Jul 2011 10:20:01 +0200
+ [ Stefan Lippers-Hollmann ]
+ * add lib80211 encryption algorithms (lib80211_crypt_{wep,ccmptkip}) to
+ nic-wireless-modules, needed for e.g. ipw2x00 wlan modules. Closes: #636259.
+
+ -- Stefan Lippers-Hollmann <[email protected]> Tue, 02 Aug 2011 01:39:17 +0200
kernel-wedge (2.78) unstable; urgency=low
diff --git a/modules/nic-wireless-modules b/modules/nic-wireless-modules
index 4e81124..eae75a9 100644
--- a/modules/nic-wireless-modules
+++ b/modules/nic-wireless-modules
@@ -27,6 +27,10 @@ rt2400pci ?
rt61pci ?
rt73usb ?
+# lib80211 encryption algorithms
+lib80211_crypt_wep ?
+lib80211_crypt_ccmp ?
+lib80211_crypt_tkip ?
# Crypto modules needed for ieee80211 WEP support
ecb ?
--
1.7.5.4