aboutsummaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2017-04-03 14:09:37 +0800
committerAndy Green <andy@warmcat.com>2017-04-03 14:09:37 +0800
commit34822f190d22946d5609cbdeca611676053e3361 (patch)
tree63744503c99466c4d5dd1f1e6de8e1f8de30e913 /Kconfig
parent30195eb79d54f99e0f7b0743522330a221661c4c (diff)
downloadlibwebsockets-34822f190d22946d5609cbdeca611676053e3361.tar.gz
esp32: enforce ssl nonblocking
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index ec36ac1d..857c9571 100644
--- a/Kconfig
+++ b/Kconfig
@@ -4,19 +4,27 @@ config LWS_MODEL_NAME
string "Model name of device firmware is for"
default "lws"
+config LWS_IS_FACTORY_APPLICATION
+ bool "Is this application is designed for the FACTORY flash slot"
+ default "n"
+
config LWS_OTA_SERVER_FQDN
+ depends on LWS_IS_FACTORY_APPLICATION
string "Domain name of OTA update server, eg, warmcat.com"
default ""
config LWS_OTA_SERVER_BASE_URL
+ depends on LWS_IS_FACTORY_APPLICATION
string "Base URL on OTA update server, eg, /esp32-ota (model is added)"
default "/esp32-ota"
config LWS_OTA_SERVER_UPLOAD_USER
+ depends on LWS_IS_FACTORY_APPLICATION
string "User to scp to upload server with"
default "root"
config LWS_OTA_SERVER_UPLOAD_PATH
+ depends on LWS_IS_FACTORY_APPLICATION
string "Path served in upload server (eg, \"/var/www/libwebsockets.org\""
default "/var/www/libwebsockets.org"