hc
2024-11-01 a01b5c9f91adaee088a817861603a5dbe14775c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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