28 lines
666 B
Plaintext
28 lines
666 B
Plaintext
|
config BR2_PACKAGE_JAILHOUSE
|
||
|
bool "Jailhouse"
|
||
|
depends on BR2_aarch64 || BR2_x86_64
|
||
|
depends on BR2_LINUX_KERNEL
|
||
|
help
|
||
|
The Jailhouse partitioning Hypervisor based on Linux.
|
||
|
|
||
|
https://github.com/siemens/jailhouse
|
||
|
|
||
|
comment "Jailhouse needs a Linux kernel to be built"
|
||
|
depends on BR2_aarch64 || BR2_x86_64
|
||
|
depends on !BR2_LINUX_KERNEL
|
||
|
|
||
|
if BR2_PACKAGE_JAILHOUSE
|
||
|
|
||
|
config BR2_PACKAGE_JAILHOUSE_HELPER_SCRIPTS
|
||
|
bool "Jailhouse helper scripts"
|
||
|
depends on BR2_PACKAGE_PYTHON
|
||
|
help
|
||
|
Python-based helpers for the Jailhouse Hypervisor.
|
||
|
|
||
|
https://github.com/siemens/jailhouse
|
||
|
|
||
|
comment "Jailhouse helper scripts require Python"
|
||
|
depends on !BR2_PACKAGE_PYTHON
|
||
|
|
||
|
endif
|