Config.in 688 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_JAILHOUSE
  2. bool "jailhouse"
  3. depends on BR2_aarch64 || BR2_x86_64
  4. depends on BR2_LINUX_KERNEL
  5. help
  6. The Jailhouse partitioning Hypervisor based on Linux.
  7. https://github.com/siemens/jailhouse
  8. if BR2_PACKAGE_JAILHOUSE
  9. config BR2_PACKAGE_JAILHOUSE_HELPER_SCRIPTS
  10. bool "helper scripts"
  11. depends on BR2_PACKAGE_PYTHON
  12. select BR2_PACKAGE_PYTHON_MAKO # runtime
  13. help
  14. Python-based helpers for the Jailhouse Hypervisor.
  15. https://github.com/siemens/jailhouse
  16. comment "helper scripts require Python"
  17. depends on !BR2_PACKAGE_PYTHON
  18. endif
  19. comment "jailhouse needs a Linux kernel to be built"
  20. depends on BR2_aarch64 || BR2_x86_64
  21. depends on !BR2_LINUX_KERNEL