From owner-svn-src-all@FreeBSD.ORG Tue Jan 6 09:43:35 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F047DA8; Tue, 6 Jan 2015 09:43:35 +0000 (UTC) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00A1266615; Tue, 6 Jan 2015 09:43:35 +0000 (UTC) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 2DEA41FE022; Tue, 6 Jan 2015 10:43:32 +0100 (CET) Message-ID: <54ABAE74.8030406@selasky.org> Date: Tue, 06 Jan 2015 10:44:20 +0100 From: Hans Petter Selasky User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Adrian Chadd , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r276730 - in head/sys: conf modules/wlan net80211 References: <201501060208.t0628kkh086961@svn.freebsd.org> In-Reply-To: <201501060208.t0628kkh086961@svn.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 09:43:35 -0000 On 01/06/15 03:08, Adrian Chadd wrote: > Modified: head/sys/conf/files > ============================================================================== > --- head/sys/conf/files Tue Jan 6 01:30:32 2015 (r276729) > +++ head/sys/conf/files Tue Jan 6 02:08:45 2015 (r276730) > @@ -3316,6 +3316,7 @@ net80211/ieee80211_scan_sta.c optional w > net80211/ieee80211_sta.c optional wlan \ > compile-with "${NORMAL_C} -Wno-unused-function" > net80211/ieee80211_superg.c optional wlan ieee80211_support_superg > +net80211/ieee80211_swscan.c optional wlan > net80211/ieee80211_tdma.c optional wlan ieee80211_support_tdma > net80211/ieee80211_wds.c optional wlan > net80211/ieee80211_xauth.c optional wlan wlan_xauth > > Modified: head/sys/modules/wlan/Makefile > ============================================================================== > --- head/sys/modules/wlan/Makefile Tue Jan 6 01:30:32 2015 (r276729) > +++ head/sys/modules/wlan/Makefile Tue Jan 6 02:08:45 2015 (r276730) > @@ -7,7 +7,7 @@ SRCS= ieee80211.c ieee80211_action.c iee > ieee80211_crypto.c ieee80211_crypto_none.c ieee80211_dfs.c \ > ieee80211_freebsd.c ieee80211_input.c ieee80211_ioctl.c \ > ieee80211_mesh.c ieee80211_node.c ieee80211_output.c ieee80211_phy.c \ > - ieee80211_power.c ieee80211_proto.c ieee80211_scan.c \ > + ieee80211_power.c ieee80211_proto.c ieee80211_scan.c ieee80211_scan_sw.c \ > ieee80211_scan_sta.c ieee80211_radiotap.c ieee80211_ratectl.c \ > ieee80211_ratectl_none.c ieee80211_regdomain.c \ > ieee80211_ht.c ieee80211_hwmp.c ieee80211_adhoc.c ieee80211_hostap.c \ Hi, FYI: What you put into "head/sys/conf/files" mismatches "head/sys/modules/wlan/Makefile" :-) See r276748. Hope is OK. --HPS