• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1menu "Libwebsockets"
2
3config LWS_MODEL_NAME
4	string "Model name of device firmware is for"
5	default "lws"
6
7config LWS_IS_FACTORY_APPLICATION
8	bool "Is this application is designed for the FACTORY flash slot"
9	default "n"
10
11config LWS_OTA_SERVER_FQDN
12	depends on LWS_IS_FACTORY_APPLICATION
13	string "Domain name of OTA update server, eg, warmcat.com"
14	default ""
15
16config LWS_OTA_SERVER_BASE_URL
17	depends on LWS_IS_FACTORY_APPLICATION
18	string "Base URL on OTA update server, eg, /esp32-ota (model is added)"
19	default "/esp32-ota"
20
21config LWS_OTA_SERVER_UPLOAD_USER
22	depends on LWS_IS_FACTORY_APPLICATION
23	string "User to scp to upload server with"
24	default "root"
25
26config LWS_OTA_SERVER_UPLOAD_PATH
27	depends on LWS_IS_FACTORY_APPLICATION
28	string "Path served in upload server (eg, \"/var/www/libwebsockets.org\""
29	default "/var/www/libwebsockets.org"
30
31endmenu
32
33