xref: /OK3568_Linux_fs/buildroot/package/jailhouse/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
8	  https://github.com/siemens/jailhouse
9
10if BR2_PACKAGE_JAILHOUSE
11
12config BR2_PACKAGE_JAILHOUSE_HELPER_SCRIPTS
13	bool "helper scripts"
14	depends on BR2_PACKAGE_PYTHON
15	select BR2_PACKAGE_PYTHON_MAKO # runtime
16	help
17	  Python-based helpers for the Jailhouse Hypervisor.
18
19	  https://github.com/siemens/jailhouse
20
21comment "helper scripts require Python"
22	depends on !BR2_PACKAGE_PYTHON
23
24endif
25
26comment "jailhouse needs a Linux kernel to be built"
27	depends on BR2_aarch64 || BR2_x86_64
28	depends on !BR2_LINUX_KERNEL
29