From: Mikael Kanstrup Date: Wed, 12 Oct 2016 12:18:54 +0000 (+0200) Subject: hostapd_cli: Enable command completion and history for Android X-Git-Tag: hostap_2_7~2225 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc4b680c22d4d400c490336e2c13319291d2cd1a;p=thirdparty%2Fhostap.git hostapd_cli: Enable command completion and history for Android Signed-off-by: Mikael Kanstrup --- diff --git a/hostapd/Android.mk b/hostapd/Android.mk index 1cc78d7e2..f9ce8773c 100644 --- a/hostapd/Android.mk +++ b/hostapd/Android.mk @@ -38,6 +38,9 @@ endif L_CFLAGS += -DCONFIG_CTRL_IFACE_CLIENT_DIR=\"/data/misc/wifi/sockets\" L_CFLAGS += -DCONFIG_CTRL_IFACE_DIR=\"/data/system/hostapd\" +# Use Android specific directory for hostapd_cli command completion history +L_CFLAGS += -DCONFIG_HOSTAPD_CLI_HISTORY_DIR=\"/data/misc/wifi\" + # To force sizeof(enum) = 4 ifeq ($(TARGET_ARCH),arm) L_CFLAGS += -mabi=aapcs-linux diff --git a/hostapd/android.config b/hostapd/android.config index e382c4081..1715cc848 100644 --- a/hostapd/android.config +++ b/hostapd/android.config @@ -199,3 +199,6 @@ CONFIG_AP=y # These extentions facilitate efficient use of multiple frequency bands # available to the AP and the devices that may associate with it. #CONFIG_MBO=y + +# Include internal line edit mode in hostapd_cli. +CONFIG_WPA_CLI_EDIT=y