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
This commit is contained in:
YAMAMOTO Takashi 2020-12-22 12:54:03 +09:00 committed by Xiang Xiao
parent e44268c484
commit f6f99c43aa

View File

@ -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