Kconfig.projbuild 992 B

12345678910111213141516171819202122232425262728293031
  1. menu "Example Configuration"
  2. config MDNS_HOSTNAME
  3. string "mDNS Hostname"
  4. default "esp32-mdns"
  5. help
  6. mDNS Hostname for example to use
  7. config MDNS_INSTANCE
  8. string "mDNS Instance Name"
  9. default "ESP32 with mDNS"
  10. help
  11. mDNS Instance Name for example to use
  12. config MDNS_RESOLVE_TEST_SERVICES
  13. bool "Resolve test services"
  14. default n
  15. help
  16. Enable resolving test services on startup.
  17. These services are advertized and evaluated in automated tests.
  18. When executed locally, these will not be resolved and warnings appear in the log.
  19. Please set to false to disable initial querying to avoid warnings.
  20. config MDNS_ADD_MAC_TO_HOSTNAME
  21. bool "Add mac suffix to hostname"
  22. default n
  23. help
  24. If enabled, a portion of MAC address is added to the hostname, this is used
  25. for evaluation of tests in CI
  26. endmenu