easy-soc-libs: move LIBWIFI_USE_CTRL_IFACE to wifi.mk

This commit is contained in:
Anjan Chanda 2023-02-21 13:01:01 +01:00
parent ffb2ca218f
commit 702f18b133
3 changed files with 6 additions and 11 deletions

View file

@ -1,5 +0,0 @@
# libeasy configuration
config LIBWIFI_USE_CTRL_IFACE
bool "Use UNIX sockets"
default n

View file

@ -6,10 +6,6 @@ define Package/libeasy
DEPENDS+=+libnl +libnl-route
endef
define Package/libeasy/config
source "$(SOURCE)/Config.in"
endef
define Build/InstallDev/libeasy
$(INSTALL_DIR) $(1)/usr/include/easy
$(INSTALL_DIR) $(1)/usr/lib

View file

@ -27,9 +27,13 @@ endef
define Package/libwifi/config
if PACKAGE_libwifi
config LIBWIFI_DEBUG
config LIBWIFI_DEBUG
depends on PACKAGE_libwifi
bool "Enable wifi debugging"
bool "Enable debugging in libwifi"
default n
config LIBWIFI_USE_CTRL_IFACE
bool "Create UNIX sockets to interface with hostapd/wpa_supplicant"
default n
endif
endef