aboutsummaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2017-03-16 10:46:31 +0800
committerAndy Green <andy@warmcat.com>2017-03-31 20:05:10 +0800
commit00ae90978b6f874a008dc565574193192ab39f00 (patch)
tree6eeeb895df8aba6c1d1fd0cab1c226cdd01d5387 /Kconfig
parent422f56c9dc70dbbeb65318c06071288517728705 (diff)
downloadlibwebsockets-00ae90978b6f874a008dc565574193192ab39f00.tar.gz
esp32: separate factory setup
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig25
1 files changed, 20 insertions, 5 deletions
diff --git a/Kconfig b/Kconfig
index 7d623437..ec36ac1d 100644
--- a/Kconfig
+++ b/Kconfig
@@ -1,9 +1,24 @@
menu "Libwebsockets"
-config LWS
- bool "Enable Libwebsockets"
- default n
- help
- Enable Libwebsockets Library
+config LWS_MODEL_NAME
+ string "Model name of device firmware is for"
+ default "lws"
+
+config LWS_OTA_SERVER_FQDN
+ string "Domain name of OTA update server, eg, warmcat.com"
+ default ""
+
+config LWS_OTA_SERVER_BASE_URL
+ string "Base URL on OTA update server, eg, /esp32-ota (model is added)"
+ default "/esp32-ota"
+
+config LWS_OTA_SERVER_UPLOAD_USER
+ string "User to scp to upload server with"
+ default "root"
+
+config LWS_OTA_SERVER_UPLOAD_PATH
+ string "Path served in upload server (eg, \"/var/www/libwebsockets.org\""
+ default "/var/www/libwebsockets.org"
endmenu
+