Your message dated Sat, 4 Feb 2006 10:56:01 +0100 with message-id <[EMAIL PROTECTED]> and subject line Bug#351303: bcm43xx-source: support WPA encryption has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message --->From [EMAIL PROTECTED] Fri Feb 03 15:03:32 2006 Received: (at submit) by bugs.debian.org; 3 Feb 2006 23:03:32 +0000 Return-path: <[EMAIL PROTECTED]> Received: from uucp.gnuu.de ([151.189.20.84]) by spohr.debian.org with esmtp (Exim 4.50) id 1F59xk-0006Eh-7J for [EMAIL PROTECTED]; Fri, 03 Feb 2006 15:03:32 -0800 Received: from alea.gnuu.de ([EMAIL PROTECTED]) by uucp.gnuu.de (8.12.9/8.12.9) with bsmtp id k13N3VoS084274 for [EMAIL PROTECTED]; Sat, 4 Feb 2006 00:03:31 +0100 (CET) (envelope-from [EMAIL PROTECTED]) Received: from ibook.localnet ([192.168.0.5] helo=alea.gnuu.de) by alea.gnuu.de with esmtp (Exim 4.50) id 1F576O-00057z-O1 for [EMAIL PROTECTED]; Fri, 03 Feb 2006 21:00:17 +0100 Received: from joerg by alea.gnuu.de with local (Exim 4.60) (envelope-from <[EMAIL PROTECTED]>) id 1F4yPb-0003Pf-Qh for [EMAIL PROTECTED]; Fri, 03 Feb 2006 11:43:31 +0100 Date: Fri, 3 Feb 2006 11:43:31 +0100 From: =?iso-8859-1?Q?J=F6rg?= Sommer <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: bcm43xx-source: support WPA encryption Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6sX45UoQRIJXqkqR" Content-Disposition: inline X-Reportbug-Version: 3.18 User-Agent: mutt-ng/devel-r774 (Debian) Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-2.4 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12 autolearn=no version=2.60-bugs.debian.org_2005_01_02 --6sX45UoQRIJXqkqR Content-Type: multipart/mixed; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Package: bcm43xx-source Version: 20060108-5 Severity: wishlist Tags: patch Please add support for WPA encryption. J=F6rg. -- System Information: Debian Release: unstable/experimental APT prefers unstable APT policy: (990, 'unstable'), (1, 'experimental') Architecture: powerpc (ppc) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.15.1 Locale: LANG=3Dde_DE, LC_CTYPE=3Dde_DE (charmap=3DISO-8859-1) Versions of packages bcm43xx-source depends on: ii bzip2 1.0.3-2 high-quality block-sorting fil= e co ii debhelper 5.0.20 helper programs for debian/rul= es ii make 3.80+3.81.b4-1 The GNU version of the "make" = util ii module-assistant 0.10.2 tool to make module package cr= eati Versions of packages bcm43xx-source recommends: ii bcm43xx-fwcutter 20060108-3 Utility for extracting Broadco= m 43 -- no debconf information --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: attachment; filename=patch Content-Transfer-Encoding: quoted-printable diff -u -Nr modules/bcm43xx/debian/patches/wpa.dpatch /usr/src/modules/bcm4= 3xx/debian/patches/wpa.dpatch --- modules/bcm43xx/debian/patches/wpa.dpatch 1970-01-01 01:00:00.000000000= +0100 +++ /usr/src/modules/bcm43xx/debian/patches/wpa.dpatch 2006-02-03 11:00:57.= 000000000 +0100 @@ -0,0 +1,71 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## wpa.dpatch by J=C3=B6rg Sommer <[EMAIL PROTECTED]> +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: This patch adds WPA support +## DP: http://www.mail-archive.com/[email protected]/msg00480.h= tml + [EMAIL PROTECTED]@ +diff -urNad bcm43xx~/bcm43xx_wx.c bcm43xx/bcm43xx_wx.c +--- bcm43xx~/bcm43xx_wx.c 2006-01-27 10:20:40.000000000 +0100 ++++ bcm43xx/bcm43xx_wx.c 2006-02-01 15:35:51.586746000 +0100 +@@ -553,6 +553,21 @@ + return err; + } +=20 ++static int bcm43xx_wx_set_encodingext(struct net_device *net_dev, ++ struct iw_request_info *info, ++ union iwreq_data *data, ++ char *extra) ++{ ++ struct bcm43xx_private *bcm =3D bcm43xx_priv(net_dev); ++ int err; ++ ++ wx_enter(); ++ ++ err =3D ieee80211_wx_set_encodeext(bcm->ieee, info, data, extra); ++ ++ return err; ++} ++ + static int bcm43xx_wx_get_encoding(struct net_device *net_dev, + struct iw_request_info *info, + union iwreq_data *data, +@@ -568,6 +583,21 @@ + return err; + } +=20 ++static int bcm43xx_wx_get_encodingext(struct net_device *net_dev, ++ struct iw_request_info *info, ++ union iwreq_data *data, ++ char *extra) ++{ ++ struct bcm43xx_private *bcm =3D bcm43xx_priv(net_dev); ++ int err; ++ ++ wx_enter(); ++ ++ err =3D ieee80211_wx_get_encodeext(bcm->ieee, info, data, extra); ++ ++ return err; ++} ++ + static int bcm43xx_wx_set_power(struct net_device *net_dev, + struct iw_request_info *info, + union iwreq_data *data, +@@ -969,11 +999,15 @@ + /* Encoding */ + WX(SIOCSIWENCODE) =3D bcm43xx_wx_set_encoding, + WX(SIOCGIWENCODE) =3D bcm43xx_wx_get_encoding, ++ WX(SIOCSIWENCODEEXT) =3D bcm43xx_wx_set_encodingext, ++ WX(SIOCGIWENCODEEXT) =3D bcm43xx_wx_get_encodingext, + /* Power saving */ + //TODO WX(SIOCSIWPOWER) =3D bcm43xx_wx_set_power, + //TODO WX(SIOCGIWPOWER) =3D bcm43xx_wx_get_power, + WX(SIOCSIWGENIE) =3D ieee80211softmac_wx_set_genie, + WX(SIOCGIWGENIE) =3D ieee80211softmac_wx_get_genie, ++ WX(SIOCSIWAUTH) =3D ieee80211_wx_set_auth, ++ WX(SIOCGIWAUTH) =3D ieee80211_wx_get_auth, + }; + #undef WX +=20 --lrZ03NoBR/3+SXJZ-- --6sX45UoQRIJXqkqR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iQEVAwUBQ+Mz04Z13Cz2nwVYAQKgWQf8DMYDqtpgx9i2M1NFfGSVje/4yB5BUW9k 0TC9xpDMoMPaeXQuKBAwp2MfeujWuI8f9CJp3ysViIOxFz4MGkd3qAaRRz9PWEOp Kps38pcHa8dLGStbDGg6wsEVpN8e+Qr8a/iLyvjqV4pccb6JQT+Rycd9hMo62Ovg 0nr7xiGfI4nB8GlCLXYUCXLu2FphtE/FAphQxyttYY/JOv38WUG9deQfk5D78awR PQakFD/XpKTGfs4/IZinKo8z2YXE7wt5BZPtcQMbj/eRvUuBkzLH0M8DaJRaT9DN bnfSpQ4TnSkOt4/rfi8uaJjlXbG+uqIw139zdLyU8AwyjC02rSnR7A== =NStc -----END PGP SIGNATURE----- --6sX45UoQRIJXqkqR--
--- End Message ---
--- Begin Message --->From [EMAIL PROTECTED] Sat Feb 04 02:04:18 2006 Received: (at 351303-done) by bugs.debian.org; 4 Feb 2006 10:04:19 +0000 Return-path: <[EMAIL PROTECTED]> Received: from mail.gmx.net ([213.165.64.21]) by spohr.debian.org with smtp (Exim 4.50) id 1F5KHC-0007iv-FQ for [EMAIL PROTECTED]; Sat, 04 Feb 2006 02:04:18 -0800 Received: (qmail invoked by alias); 04 Feb 2006 10:03:46 -0000 Received: from dslb-084-056-076-077.pools.arcor-ip.net (EHLO frodo) [84.56.76.77] by mail.gmx.net (mp037) with SMTP; 04 Feb 2006 11:03:46 +0100 X-Authenticated: #1545045 Received: by frodo (Postfix, from userid 1000) id 823E2DABE4; Sat, 4 Feb 2006 10:56:01 +0100 (CET) Date: Sat, 4 Feb 2006 10:56:01 +0100 From: Rene Engelhard <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Bug#351303: bcm43xx-source: support WPA encryption Message-ID: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> X-PGP-Key: 248AEB73 X-PGP-Fingerprint: 41FA F208 28D4 7CA5 19BB 7AD9 F859 90B0 248A EB73 Organization: The Debian Project User-Agent: Mutt/1.5.11+cvs20060126 X-Y-GMX-Trusted: 0 X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Version: 20060125-1 Hi, J=F6rg Sommer wrote: > Package: bcm43xx-source > Version: 20060108-5 > Severity: wishlist > Tags: patch >=20 > Please add support for WPA encryption. This already was inclueded in the 2006125 snapshot. Which is in sid... Closing. Regards, Rene --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFD5Hox+FmQsCSK63MRAvfsAJsFDXAZ8pX47iSEXIvMKt8W7GS+HwCdFx1R MCx6F0Hge2vh6VvgD3eQzgE= =JKUY -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ--
--- End Message ---

