From 2d7f3fd0f9630591a2caf358a95b8c93023402ee Mon Sep 17 00:00:00 2001 From: Dominique Martinet <dominique.martinet@atmark-techno.com> Date: Wed, 2 Mar 2022 16:31:12 +0900 Subject: [PATCH] main/hostapd: enable 80211ax (wifi 6) the driver is only used if 'ieee80211ax=1' is explicitly set in the config. The default config we install describe options for it, and new devices now commonly support the feature, so let's enable it. --- main/hostapd/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/hostapd/APKBUILD b/main/hostapd/APKBUILD index 7f399ef99f62..ce4f09093591 100644 --- a/main/hostapd/APKBUILD +++ b/main/hostapd/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hostapd pkgver=2.10 -pkgrel=0 +pkgrel=1 pkgdesc="daemon for wireless software access points" url="https://w1.fi/hostapd/" arch="all" @@ -53,6 +53,7 @@ prepare() { -e '/^#CONFIG_IEEE80211N=y/s/^#//' \ -e '/^#CONFIG_IEEE80211R=y/s/^#//' \ -e '/^#CONFIG_IEEE80211AC=y/s/^#//' \ + -e '/^#CONFIG_IEEE80211AX=y/s/^#//' \ -e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \ -e '/^#CONFIG_LIBNL32=y/s/^#//' \ -e '/^#CONFIG_ACS=y/s/^#//' \ -- GitLab