buildroot/package/jailhouse/Config.in
Carlo Caione ee4990721c package/jailhouse: new package
Jailhouse is a partitioning Hypervisor based on Linux. It is able to run
bare-metal applications or (adapted) operating systems besides Linux.
For this purpose, it configures CPU and device virtualization features
of the hardware platform in a way that none of these domains, called
"cells" here, can interfere with each other in an unacceptable way.

For 32-bit ARM, it uses instructions from the armv7ve ISA. Since we
don't have a Config.in symbol to represent this yet, exclude 32-bit ARM
for now.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
[Arnout:
 - remove arm as supported architecture;
 - add architecture dependency to comment;
 - remove architecture comment;
 - move python dependencies to the condition.]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2019-07-11 22:38:47 +02:00

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