Kconfig 857 B

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