mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-01 22:23:10 +01:00
hostapd: unconditionally enable ap/mesh for wpa-cli
Without this change, wpa-cli features depend on which wpad build variant was
used to build the wpa-cli package
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Tested-by: Jérôme Benoit <jerome.benoit@piment-noir.org> [WRT1900AC v1]
[added missing package version bump]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit 03e9e4ba9e)
This commit is contained in:
parent
54b6683390
commit
f141cdd200
2 changed files with 8 additions and 2 deletions
|
|
@ -7,7 +7,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=hostapd
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE_URL:=http://w1.fi/hostap.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
|
|
|
|||
|
|
@ -1,11 +1,17 @@
|
|||
--- a/wpa_supplicant/wpa_cli.c
|
||||
+++ b/wpa_supplicant/wpa_cli.c
|
||||
@@ -26,6 +26,9 @@
|
||||
@@ -26,6 +26,15 @@
|
||||
#include <cutils/properties.h>
|
||||
#endif /* ANDROID */
|
||||
|
||||
+#ifndef CONFIG_P2P
|
||||
+#define CONFIG_P2P
|
||||
+#endif
|
||||
+#ifndef CONFIG_AP
|
||||
+#define CONFIG_AP
|
||||
+#endif
|
||||
+#ifndef CONFIG_MESH
|
||||
+#define CONFIG_MESH
|
||||
+#endif
|
||||
|
||||
static const char *const wpa_cli_version =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue