diff options
author | Felix Fietkau <nbd@nbd.name> | 2020-01-28 14:12:08 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2020-01-28 14:38:43 +0100 |
commit | 03e9e4ba9ea8f00ff7c6f076f2cdc322e18cd3a4 (patch) | |
tree | cc9acfe97479b6fb3bfaf7b00c2f89a7fcef0fce /package/network | |
parent | 1e3bfbafd37ccb32d0ed6618f4886e1dec6643d2 (diff) | |
download | upstream-03e9e4ba9ea8f00ff7c6f076f2cdc322e18cd3a4.tar.gz upstream-03e9e4ba9ea8f00ff7c6f076f2cdc322e18cd3a4.tar.bz2 upstream-03e9e4ba9ea8f00ff7c6f076f2cdc322e18cd3a4.zip |
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>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/hostapd/patches/431-wpa_cli_ifdef.patch | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/network/services/hostapd/patches/431-wpa_cli_ifdef.patch b/package/network/services/hostapd/patches/431-wpa_cli_ifdef.patch index 2c9fe28a1d..65c31c567f 100644 --- a/package/network/services/hostapd/patches/431-wpa_cli_ifdef.patch +++ b/package/network/services/hostapd/patches/431-wpa_cli_ifdef.patch @@ -1,12 +1,18 @@ --- 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 = "wpa_cli v" VERSION_STR "\n" |