From owner-freebsd-current@FreeBSD.ORG Wed Dec 15 01:31:57 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 309B116A4CE for ; Wed, 15 Dec 2004 01:31:57 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id E917343D46 for ; Wed, 15 Dec 2004 01:31:56 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id iBF1VsWi062208 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Dec 2004 17:31:56 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <41BF9614.2020306@errno.com> Date: Tue, 14 Dec 2004 17:40:36 -0800 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0RC1 (X11/20041208) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chen Lihong References: <1103072155.675.6.camel@OmniBook.accton.com.tw> In-Reply-To: <1103072155.675.6.camel@OmniBook.accton.com.tw> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-current@freebsd.org Subject: Re: net80211 can not load wlan_ccmp.ko X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 01:31:57 -0000 Chen Lihong wrote: > I am using atheros AR5211 802.11a+b card bus WLAN adapter. > And installed ports/security/wpa_supplicant, It required wlan_ccmp > module loaded when I need AES encryption. > Every time I load wlan_ccmp will failed, like this: > > # kldload wlan_ccmp > link_elf: symbol _rijndael_set_key undefined > # > > It seems function _rijndael_set_key() not loaded. Just fixed: sam 2004-12-15 01:30:38 UTC FreeBSD src repository Modified files: sys/modules/wlan_ccmp Makefile Log: bring in rijndael crypto code to satisfy dependency: should break rijndael out into a separate module a la rc4 but several other cases need to be fixed also so for now do as others do Revision Changes Path 1.2 +2 -0 src/sys/modules/wlan_ccmp/Makefile http://cvsweb.FreeBSD.org/src/sys/modules/wlan_ccmp/Makefile.diff?r1=1.1&r2=1.2 Sam