Kconfig 897 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menuconfig ACTIONS_UTILS
  2. bool
  3. prompt "Actions Utils Support"
  4. depends on ACTIONS_FRAMEWORK
  5. default y
  6. help
  7. This option enables the actions test service.
  8. config ACTS_RING_BUFFER
  9. bool
  10. prompt "Actions Ring Buffers Support"
  11. depends on ACTIONS_UTILS
  12. default n
  13. help
  14. Enable usage of actions ring buffers. This is similar to kernel ring buffer,
  15. except that it contains a device address and support arbitrary buffer size.
  16. For optimal performance, use buffer sizes that are a power of 2.
  17. config ACTS_EBERGY_STATISTICS
  18. bool
  19. prompt "Actions Energy statistics"
  20. depends on ACTIONS_UTILS
  21. default n
  22. help
  23. Enable usage of actsions Enable actions Energy statistics.
  24. config ACTS_TRANSCODE
  25. bool
  26. prompt "Actions Transcode Support"
  27. depends on ACTIONS_UTILS
  28. default n
  29. help
  30. Enable usage of actsions Enable actions transcode.
  31. rsource "stream/Kconfig"
  32. rsource "iterator/Kconfig"