Kconfig 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Kconfig - Actions system manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig CORE
  8. bool
  9. prompt "Core"
  10. default n
  11. select APP_MANAGER
  12. select SRV_MANAGER
  13. select MSG_MANAGER
  14. help
  15. This option enables actions system manager.
  16. config APP_MANAGER
  17. bool
  18. prompt "App Manager Support"
  19. depends on CORE
  20. default n
  21. help
  22. This option enables actions app manager.
  23. config SRV_MANAGER
  24. bool
  25. prompt "Server Manager Support"
  26. depends on CORE
  27. default n
  28. help
  29. This option enables actions server manager.
  30. config MSG_MANAGER
  31. bool
  32. prompt "Message Manager Support"
  33. depends on CORE
  34. default n
  35. help
  36. This option enables actions message manager.
  37. config MESSAGE_DEBUG
  38. bool "Debug Message Support"
  39. depends on MSG_MANAGER
  40. help
  41. This option enable message debug support.