From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 89FBB138239 for ; Wed, 2 Jun 2021 12:59:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF7FCE0895; Wed, 2 Jun 2021 12:59:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7FBEE0895 for ; Wed, 2 Jun 2021 12:59:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4342340FB5 for ; Wed, 2 Jun 2021 12:59:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 568C379E for ; Wed, 2 Jun 2021 12:59:45 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1622638772.7a6a43b65ba6a96b1121aac9de2431b646aef0c0.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/hostapd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/hostapd/hostapd-2.9-r4.ebuild net-wireless/hostapd/hostapd-9999.ebuild X-VCS-Directories: net-wireless/hostapd/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 7a6a43b65ba6a96b1121aac9de2431b646aef0c0 X-VCS-Branch: master Date: Wed, 2 Jun 2021 12:59:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 47d58d24-5d5e-468a-afb1-d10ee4b41c4c X-Archives-Hash: b306255dde12a2fae4ddc87df5ce629f commit: 7a6a43b65ba6a96b1121aac9de2431b646aef0c0 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Jun 2 12:57:06 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Jun 2 12:59:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a6a43b6 net-wireless/hostapd: enable RSN operating channel validation support Closes: https://bugs.gentoo.org/749753 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> net-wireless/hostapd/hostapd-2.9-r4.ebuild | 1 + net-wireless/hostapd/hostapd-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/net-wireless/hostapd/hostapd-2.9-r4.ebuild b/net-wireless/hostapd/hostapd-2.9-r4.ebuild index c94f67d82ad..8a63e598f55 100644 --- a/net-wireless/hostapd/hostapd-2.9-r4.ebuild +++ b/net-wireless/hostapd/hostapd-2.9-r4.ebuild @@ -164,6 +164,7 @@ src_configure() { echo "CONFIG_IEEE80211W=y" >> ${CONFIG} || die echo "CONFIG_IEEE80211N=y" >> ${CONFIG} || die echo "CONFIG_IEEE80211AC=y" >> ${CONFIG} || die + echo "CONFIG_OCV=y" >> ${CONFIG} || die echo "CONFIG_PEERKEY=y" >> ${CONFIG} || die echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} || die echo "CONFIG_INTERWORKING=y" >> ${CONFIG} || die diff --git a/net-wireless/hostapd/hostapd-9999.ebuild b/net-wireless/hostapd/hostapd-9999.ebuild index e6450650cae..c9cb0fa9f95 100644 --- a/net-wireless/hostapd/hostapd-9999.ebuild +++ b/net-wireless/hostapd/hostapd-9999.ebuild @@ -154,6 +154,7 @@ src_configure() { echo "CONFIG_IEEE80211W=y" >> ${CONFIG} || die echo "CONFIG_IEEE80211N=y" >> ${CONFIG} || die echo "CONFIG_IEEE80211AC=y" >> ${CONFIG} || die + echo "CONFIG_OCV=y" >> ${CONFIG} || die echo "CONFIG_PEERKEY=y" >> ${CONFIG} || die echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} || die echo "CONFIG_INTERWORKING=y" >> ${CONFIG} || die