Kconfig 680 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Trusty
  3. #
  4. menu "Trusty"
  5. config TRUSTY
  6. tristate "Trusty"
  7. default n
  8. config TRUSTY_LOG
  9. tristate
  10. depends on TRUSTY
  11. default y
  12. config TRUSTY_VIRTIO
  13. tristate "Trusty virtio support"
  14. depends on TRUSTY
  15. select VIRTIO
  16. default y
  17. config TRUSTY_VIRTIO_IPC
  18. tristate "Trusty Virtio IPC driver"
  19. depends on TRUSTY_VIRTIO
  20. default y
  21. help
  22. This module adds support for communications with Trusty Services
  23. If you choose to build a module, it'll be called trusty-ipc.
  24. Say N if unsure.
  25. config MT_TRUSTY_DEBUGFS
  26. tristate "Trusty debugfs for Mediatek platforms"
  27. default n
  28. config TRUSTY_INTERRUPT_MAP
  29. tristate "Trusty interrupt map"
  30. depends on TRUSTY
  31. default n
  32. endmenu