hostap: Replace menuconfig by config
This avoid compliance warning Found pointless 'menuconfig' symbols without children. Use regular 'config' symbols instead. See https://docs.zephyrproject.org/latest/build/kconfig/tips.html#menuconfig-symbols. WIFI_NM_WPA_SUPPLICANT modules/hostap/Kconfig:8 WIFI_NM_WPA_SUPPLICANT modules/hostap/Kconfig:8 Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This commit is contained in:
parent
5af390c600
commit
57b4ff137d
|
@ -5,7 +5,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
menuconfig WIFI_NM_WPA_SUPPLICANT
|
||||
config WIFI_NM_WPA_SUPPLICANT
|
||||
bool "WPA Suplicant from hostap project [EXPERIMENTAL]"
|
||||
select POSIX_CLOCK
|
||||
select POSIX_SIGNAL
|
||||
|
@ -19,6 +19,8 @@ menuconfig WIFI_NM_WPA_SUPPLICANT
|
|||
help
|
||||
WPA supplicant as a network management backend for WIFI_NM.
|
||||
|
||||
if WIFI_NM_WPA_SUPPLICANT
|
||||
|
||||
config WIFI_NM_WPA_SUPPLICANT_THREAD_STACK_SIZE
|
||||
int "Stack size for wpa_supplicant thread"
|
||||
default 8192
|
||||
|
@ -59,8 +61,6 @@ config WIFI_NM_WPA_SUPPLICANT_DEBUG_LEVEL
|
|||
runtime filtering can also be configured in addition to the compile-time
|
||||
filtering.
|
||||
|
||||
if WIFI_NM_WPA_SUPPLICANT
|
||||
|
||||
# Memory optimizations
|
||||
config WIFI_NM_WPA_SUPPLICANT_ADVANCED_FEATURES
|
||||
bool "Advanced features"
|
||||
|
|
Loading…
Reference in a new issue