From f6f99c43aa537dd7d52ef8fb212bcc30b562d7b5 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 22 Dec 2020 12:54:03 +0900 Subject: [PATCH] netinit: Make the default SSID and passphrase empty * It doesn't make much sense to have the default values for these highly environment-dependent settings. * netutils/netinit/netinit_associate.c calls wpa_driver_wext_associate if the SSID is not empty. Depending on the environment, it can take long to fail. It slows down the boot of some configurations considerably. eg. esp32-devkitc:wapi --- netutils/netinit/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netutils/netinit/Kconfig b/netutils/netinit/Kconfig index 4f0e31a05..95d48ad6a 100644 --- a/netutils/netinit/Kconfig +++ b/netutils/netinit/Kconfig @@ -542,11 +542,11 @@ config NETINIT_WAPI_ALG config NETINIT_WAPI_SSID string "SSID" - default "myApSSID" + default "" config NETINIT_WAPI_PASSPHRASE string "Passprhase" - default "mySSIDpassphrase" + default "" endmenu # WAPI Configuration endif # NETUTILS_NETINIT