5a3f78c919
Until now, libaio contained some architecture specific code to do the syscalls. In fact, it contained a generic variant of the code called syscall-generic.h, but it was showing a warning when it was used, as if it was "not safe". Consequently, in Buildroot, we had chosen to support libaio only on a the subset of architectures that were explicitly handled by libaio. However, between 0.3.110 and 0.3.111, libaio upstream entirely dropped the architecture-specific code: https://pagure.io/libaio/c/97fd3fc0195500e616e34047cba4846164c411d9?branch=master Consequently, in this patch, we: - Bump libaio to 0.3.111. - Switch to the new upstream at https://pagure.io/libaio/. - Drop the 0001-arches.patch patch, which was adding support for MIPS, since we no longer need architecture-specific code. - Update the remaining patches, and Git-format one of them which wasn't Git-formatted. - Drop the BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS option and all its uses. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_XEN
|
|
bool "xen"
|
|
# needs "dmb" on ARM, so ARM >= v7
|
|
depends on BR2_ARM_CPU_ARMV7A || BR2_aarch64
|
|
select BR2_PACKAGE_XEN_HYPERVISOR if !BR2_PACKAGE_XEN_TOOLS
|
|
help
|
|
This package builds the Xen hypervisor and toolstack.
|
|
|
|
http://www.xenproject.org/
|
|
|
|
if BR2_PACKAGE_XEN
|
|
|
|
config BR2_PACKAGE_XEN_HYPERVISOR
|
|
bool "Xen hypervisor"
|
|
help
|
|
The Xen binaries are avaliable in /usr/lib/xen/ See
|
|
http://wiki.xenproject.org/wiki/Getting_Started for using
|
|
the Xen hypervisor.
|
|
|
|
config BR2_PACKAGE_XEN_TOOLS
|
|
bool "Xen tools"
|
|
depends on !BR2_STATIC_LIBS # dtc (libfdt)
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
select BR2_PACKAGE_DTC
|
|
select BR2_PACKAGE_LIBAIO
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
select BR2_PACKAGE_YAJL
|
|
select BR2_PACKAGE_ARGP_STANDALONE if !BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
The Xen tools can be accessed by the xl command.
|
|
|
|
comment "xen tools need a toolchain w/ wchar, threads, dynamic library"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|
|
|
|
endif
|