a1fddd832e
This commit fixes a number of small minor details in the jailhouse Config.in file: - The Config.in comment is in the middle of the main BR2_PACKAGE_JAILHOUSE option and its sub-options, causing the sub-options to not be indented properly in menuconfig - jailhouse was capitalized as Jailhouse, while all Buildroot packages in menuconfig use small letters, so use "jailhouse" everywhere - no need to repeat "jailhouse" in the prompt of the sub-option for helper scripts, since it is not properly indented under the main jailhouse option. Ditto in the comment when python is disabled. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> [yann.morin.1998@free.fr: - further drop 'jailhouse' from the helper scripts comment when python is not enabled ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
29 lines
688 B
Plaintext
29 lines
688 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
|
|
|
|
if BR2_PACKAGE_JAILHOUSE
|
|
|
|
config BR2_PACKAGE_JAILHOUSE_HELPER_SCRIPTS
|
|
bool "helper scripts"
|
|
depends on BR2_PACKAGE_PYTHON
|
|
select BR2_PACKAGE_PYTHON_MAKO # runtime
|
|
help
|
|
Python-based helpers for the Jailhouse Hypervisor.
|
|
|
|
https://github.com/siemens/jailhouse
|
|
|
|
comment "helper scripts require Python"
|
|
depends on !BR2_PACKAGE_PYTHON
|
|
|
|
endif
|
|
|
|
comment "jailhouse needs a Linux kernel to be built"
|
|
depends on BR2_aarch64 || BR2_x86_64
|
|
depends on !BR2_LINUX_KERNEL
|