mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
e9df5b0fc3
Drop python2 support. Remove python3-markupsafe host build as python2 host builds for markupsafe are not supported, python3 host builds are moved to python-markupsafe. Remove python3-jinja2 host build as python2 host builds for jinja2 are not supported, python3 host builds are moved to python-jinja2. Remove python3-mako host build as python2 host builds for mako are not supported, python3 host builds are moved to python-mako. Propagate reverse python3 dependency. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
29 lines
691 B
Plaintext
29 lines
691 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_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_MAKO # runtime
|
|
help
|
|
Python-based helpers for the Jailhouse Hypervisor.
|
|
|
|
https://github.com/siemens/jailhouse
|
|
|
|
comment "helper scripts require Python3"
|
|
depends on !BR2_PACKAGE_PYTHON3
|
|
|
|
endif
|
|
|
|
comment "jailhouse needs a Linux kernel to be built"
|
|
depends on BR2_aarch64 || BR2_x86_64
|
|
depends on !BR2_LINUX_KERNEL
|