Kconfig.projbuild 914 B

12345678910111213141516171819202122232425262728293031
  1. menu "Example Configuration"
  2. config EXAMPLE_FIRMWARE_UPGRADE_URL
  3. string "Firmware Upgrade URL"
  4. default "https://192.168.2.106:8070/hello-world.bin"
  5. help
  6. URL of server which hosts the firmware image.
  7. config EXAMPLE_FIRMWARE_UPGRADE_URL_FROM_STDIN
  8. bool
  9. default y if EXAMPLE_FIRMWARE_UPGRADE_URL = "FROM_STDIN"
  10. config EXAMPLE_SKIP_COMMON_NAME_CHECK
  11. bool "Skip server certificate CN fieldcheck"
  12. default n
  13. help
  14. This allows you to skip the validation of OTA server certificate CN field.
  15. config EXAMPLE_SKIP_VERSION_CHECK
  16. bool "Skip firmware version check"
  17. default n
  18. help
  19. This allows you to skip the firmware version check.
  20. config EXAMPLE_OTA_RECV_TIMEOUT
  21. int "OTA Receive Timeout"
  22. default 5000
  23. help
  24. Maximum time for reception
  25. endmenu