File: Kconfig

package info (click to toggle)
libwebsockets 4.3.5-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 31,404 kB
  • sloc: ansic: 194,409; javascript: 1,550; sh: 1,387; cpp: 505; java: 461; perl: 405; xml: 118; makefile: 76; awk: 5
file content (32 lines) | stat: -rw-r--r-- 857 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
menu "Libwebsockets"

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"

endmenu