Kconfig.projbuild 612 B

1234567891011121314151617181920
  1. menu "Example Configuration"
  2. config EXAMPLE_FIRMWARE_UPGRADE_URL
  3. string "firmware upgrade url endpoint"
  4. default "https://192.168.0.3:8070/hello-world.bin"
  5. help
  6. URL of server which hosts the firmware
  7. image.
  8. config EXAMPLE_FIRMWARE_UPGRADE_URL_FROM_STDIN
  9. bool
  10. default y if EXAMPLE_FIRMWARE_UPGRADE_URL = "FROM_STDIN"
  11. config EXAMPLE_SKIP_COMMON_NAME_CHECK
  12. bool "Skip server certificate CN fieldcheck"
  13. default n
  14. help
  15. This allows you to skip the validation of OTA server certificate CN field.
  16. endmenu