117fd5dfbc
Xvisor was failing to build on AArch64 with: package/xvisor/xvisor.mk:60: *** No Xvisor defconfig name specified, check your BR2_PACKAGE_XVISOR_DEFCONFIG setting. Stop. The first problem is that the Config.in file had a typo: it was using BR2_AARCH64 instead of BR2_aarch64, and therefore the BR2_PACKAGE_XVISOR_DEFCONFIG variable had no value. Once this is fixed, another problem occurs: the ARCH variable needs to be specified as "arm" for XVisor, for both ARM and AArch64. Therefore, a XVISOR_ARCH variable is introduced, which is calculated according to the Buildroot configuration options. Only x86-64, arm and aarch64 are supported by Xvisor currently, so it remains simple. Fixes: http://autobuild.buildroot.net/results/1719a63ff257f13634a06a14327abfb327984101/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
69 lines
1.9 KiB
Plaintext
69 lines
1.9 KiB
Plaintext
config BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
|
|
bool
|
|
default y
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_arm || BR2_aarch64 || BR2_x86_64
|
|
depends on !BR2_ARM_CPU_ARMV4 && !BR2_ARM_CPU_ARMV7M
|
|
|
|
menuconfig BR2_PACKAGE_XVISOR
|
|
bool "xvisor"
|
|
depends on BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
help
|
|
Xvisor is an open-source type-1 hypervisor, which aims at providing
|
|
a monolithic, light-weight, portable, and flexible virtualization
|
|
solution.
|
|
|
|
http://www.xhypervisor.org/
|
|
|
|
if BR2_PACKAGE_XVISOR
|
|
|
|
choice
|
|
prompt "Xvisor configuration"
|
|
default BR2_PACKAGE_XVISOR_USE_DEFCONFIG
|
|
|
|
config BR2_PACKAGE_XVISOR_USE_DEFCONFIG
|
|
bool "Using an in-tree defconfig file"
|
|
|
|
config BR2_PACKAGE_XVISOR_USE_CUSTOM_CONFIG
|
|
bool "Using a custom (def)config file"
|
|
|
|
endchoice
|
|
|
|
config BR2_PACKAGE_XVISOR_DEFCONFIG
|
|
string "Defconfig name"
|
|
default "generic-v5" if BR2_ARM_CPU_ARMV5
|
|
default "generic-v6" if BR2_ARM_CPU_ARMV6
|
|
default "generic-v7" if BR2_ARM_CPU_ARMV7A
|
|
default "generic-v8" if BR2_aarch64
|
|
default "x86_64_generic" if BR2_x86_64
|
|
depends on BR2_PACKAGE_XVISOR_USE_DEFCONFIG
|
|
help
|
|
Name of the Xvisor defconfig file to use, without the
|
|
trailing -defconfig. The defconfig is located in
|
|
arch/<arch>/configs in the source tree.
|
|
|
|
config BR2_PACKAGE_XVISOR_CUSTOM_CONFIG_FILE
|
|
string "Configuration file path"
|
|
depends on BR2_PACKAGE_XVISOR_USE_CUSTOM_CONFIG
|
|
help
|
|
Path to the Xvisor configuration file
|
|
|
|
config BR2_PACKAGE_XVISOR_CREATE_UBOOT_IMAGE
|
|
bool "Create U-Boot image of Xvisor"
|
|
depends on BR2_arm
|
|
select BR2_PACKAGE_HOST_UBOOT_TOOLS
|
|
help
|
|
Create an image file of Xvisor loadable from Das U-Boot.
|
|
|
|
config BR2_PACKAGE_XVISOR_BUILD_TEST_DTB
|
|
bool "Build test device-tree blobs"
|
|
help
|
|
Build test device-tree blobs for popular boards.
|
|
|
|
endif
|
|
|
|
comment "xvisor needs a toolchain w/ gcc >= 4.9"
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
depends on BR2_PACKAGE_XVISOR_ARCH_SUPPORTS
|