From patchwork Thu Oct 17 08:03:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eliad Peller X-Patchwork-Id: 284117 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from maxx.maxx.shmoo.com (maxx.shmoo.com [205.134.188.171]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "maxx.shmoo.com", Issuer "CA Cert Signing Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 427BE2C00BE for ; Thu, 17 Oct 2013 19:06:07 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by maxx.maxx.shmoo.com (Postfix) with ESMTP id 84D8D9C198; Thu, 17 Oct 2013 04:05:46 -0400 (EDT) X-Virus-Scanned: amavisd-new at maxx.shmoo.com Received: from maxx.maxx.shmoo.com ([127.0.0.1]) by localhost (maxx.shmoo.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id N-S3KXjQrFl2; Thu, 17 Oct 2013 04:05:46 -0400 (EDT) Received: from maxx.shmoo.com (localhost [127.0.0.1]) by maxx.maxx.shmoo.com (Postfix) with ESMTP id B04259C199; Thu, 17 Oct 2013 04:04:42 -0400 (EDT) X-Original-To: mailman-post+hostap@maxx.shmoo.com Delivered-To: mailman-post+hostap@maxx.shmoo.com Received: from localhost (localhost [127.0.0.1]) by maxx.maxx.shmoo.com (Postfix) with ESMTP id 776719C16C for ; Thu, 17 Oct 2013 04:04:40 -0400 (EDT) X-Virus-Scanned: amavisd-new at maxx.shmoo.com Received: from maxx.maxx.shmoo.com ([127.0.0.1]) by localhost (maxx.shmoo.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Hnpq0b1ZJGKG for ; Thu, 17 Oct 2013 04:04:35 -0400 (EDT) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by maxx.maxx.shmoo.com (Postfix) with ESMTP id BFECA9C17C for ; Thu, 17 Oct 2013 04:04:26 -0400 (EDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 17 Oct 2013 01:04:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.93,512,1378882800"; d="scan'208";a="412421213" Received: from ipeer-e6430-1.jer.intel.com ([10.12.217.166]) by fmsmga001.fm.intel.com with ESMTP; 17 Oct 2013 01:04:24 -0700 From: eliad@wizery.com To: hostap@lists.shmoo.com Subject: [PATCH 6/9] wpa_supplicant: add CONFIG_IEEE80211AC Date: Thu, 17 Oct 2013 10:03:43 +0200 Message-Id: <1381997026-2324-7-git-send-email-eliad@wizery.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1381997026-2324-1-git-send-email-eliad@wizery.com> References: <1381997026-2324-1-git-send-email-eliad@wizery.com> X-BeenThere: hostap@lists.shmoo.com X-Mailman-Version: 2.1.11 Precedence: list List-Id: HostAP Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: hostap-bounces@lists.shmoo.com Errors-To: hostap-bounces@lists.shmoo.com From: Eliad Peller In order to support GO with 11ac support, add CONFIG_IEEE80211AC config option support to the Makefile. Signed-hostap: Eliad Peller --- wpa_supplicant/Makefile | 6 ++++++ wpa_supplicant/defconfig | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 5698619..5fc3cbe 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -750,6 +750,9 @@ OBJS += ../src/ap/beacon.o OBJS += ../src/ap/eap_user_db.o ifdef CONFIG_IEEE80211N OBJS += ../src/ap/ieee802_11_ht.o +ifdef CONFIG_IEEE80211AC +OBJS += ../src/ap/ieee802_11_vht.o +endif endif ifdef CONFIG_WNM OBJS += ../src/ap/wnm_ap.o @@ -765,6 +768,9 @@ OBJS += ../src/eap_server/eap_server_methods.o ifdef CONFIG_IEEE80211N CFLAGS += -DCONFIG_IEEE80211N +ifdef CONFIG_IEEE80211AC +CFLAGS += -DCONFIG_IEEE80211AC +endif endif ifdef NEED_AP_MLME diff --git a/wpa_supplicant/defconfig b/wpa_supplicant/defconfig index aa6005f..98fa30f 100644 --- a/wpa_supplicant/defconfig +++ b/wpa_supplicant/defconfig @@ -484,6 +484,10 @@ CONFIG_PEERKEY=y # IEEE 802.11n (High Throughput) support (mainly for AP mode) #CONFIG_IEEE80211N=y +# IEEE 802.11ac (Very High Throughput) support (mainly for AP mode) +# (depends on CONFIG_IEEE80211N) +#CONFIG_IEEE80211AC=y + # Wireless Network Management (IEEE Std 802.11v-2011) # Note: This is experimental and not complete implementation. #CONFIG_WNM=y