Kconfig 564 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Kconfig - Actions ota
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig OTA
  8. bool
  9. prompt "ota"
  10. default n
  11. help
  12. This option enables actions ota
  13. config OTA_LZMA
  14. bool "OTA lzma Support"
  15. depends on OTA
  16. default y
  17. help
  18. This option enable OTA lzma.
  19. config OTA_PRODUCT_SUPPORT
  20. bool "OTA product Support"
  21. depends on OTA
  22. default n
  23. help
  24. This option enable OTA transmit.
  25. config OTA_BLE_MASTER_SUPPORT
  26. bool "LE OTA product Support"
  27. depends on OTA
  28. default n
  29. help
  30. This option enable BLE OTA transmit.