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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4843D158009 for ; Mon, 19 Jun 2023 20:38:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87F07E0855; Mon, 19 Jun 2023 20:38:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C780E0855 for ; Mon, 19 Jun 2023 20:38:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64B0D340E21 for ; Mon, 19 Jun 2023 20:38:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83222A80 for ; Mon, 19 Jun 2023 20:38:27 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1687207107.9fc032211d45b112eccf6a9e4fa53c6439b4886f.zerochaos@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.10.ebuild net-wireless/hostapd/hostapd-9999.ebuild X-VCS-Directories: net-wireless/hostapd/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: 9fc032211d45b112eccf6a9e4fa53c6439b4886f X-VCS-Branch: master Date: Mon, 19 Jun 2023 20:38:27 +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: 3920d615-5f29-4982-8c44-af53830bc9bc X-Archives-Hash: f95ff138b6b587da1325db7b1c01f342 commit: 9fc032211d45b112eccf6a9e4fa53c6439b4886f Author: groche97 gmail com> AuthorDate: Sat Apr 22 12:38:21 2023 +0000 Commit: Rick Farina gentoo org> CommitDate: Mon Jun 19 20:38:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc03221 net-wireless/hostapd: Added support for wifi 6 Closes: https://bugs.gentoo.org/906575 Closes: https://github.com/gentoo/gentoo/pull/30697 Signed-off-by: groche97 gmail.com> Signed-off-by: Rick Farina gentoo.org> net-wireless/hostapd/hostapd-2.10.ebuild | 1 + net-wireless/hostapd/hostapd-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/net-wireless/hostapd/hostapd-2.10.ebuild b/net-wireless/hostapd/hostapd-2.10.ebuild index 09e00a11c402..6f98472f8dbc 100644 --- a/net-wireless/hostapd/hostapd-2.10.ebuild +++ b/net-wireless/hostapd/hostapd-2.10.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_IEEE80211AX=y" >> ${CONFIG} || die echo "CONFIG_OCV=y" >> ${CONFIG} || die echo "CONFIG_PEERKEY=y" >> ${CONFIG} || die echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} || die diff --git a/net-wireless/hostapd/hostapd-9999.ebuild b/net-wireless/hostapd/hostapd-9999.ebuild index 7a10010c4725..6e9b6c0d78be 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_IEEE80211AX=y" >> ${CONFIG} || die echo "CONFIG_OCV=y" >> ${CONFIG} || die echo "CONFIG_PEERKEY=y" >> ${CONFIG} || die echo "CONFIG_RSN_PREAUTH=y" >> ${CONFIG} || die