Kconfig.open-amp 648 B

12345678910111213141516171819202122232425262728293031
  1. # Copyright (c) 2018 Linaro Limited
  2. # SPDX-License-Identifier: Apache-2.0
  3. config OPENAMP
  4. bool "OpenAMP Support"
  5. select LIBMETAL
  6. help
  7. This option enables the OpenAMP IPC library
  8. if OPENAMP
  9. config OPENAMP_SRC_PATH
  10. string "OpenAMP library source path"
  11. default "open-amp"
  12. depends on OPENAMP
  13. help
  14. This option specifies the path to the source for the open-amp library
  15. config OPENAMP_MASTER
  16. bool "OpenAMP Master Support"
  17. default y
  18. help
  19. This option enables support for OpenAMP VirtIO Master
  20. config OPENAMP_SLAVE
  21. bool "OpenAMP Slave Support"
  22. default y
  23. help
  24. This option enables support for OpenAMP VirtIO Slave
  25. endif # OPENAMP