mirror of
https://git.yoctoproject.org/poky
synced 2026-09-08 12:49:32 +02:00
Multiple files have " ," instead of ", " in expressions. This changes them to conform to the way the rest of them are done. Found and corrected via: git ls-files | xargs sed --follow-symlinks -i 's/ ,d/, d/g' (From OE-Core rev: 36c3afd2dd8bded02ea8f255e89a09ebd75c795b) Signed-off-by: Jon Mason <jon.mason@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.0 KiB
BlitzBasic
29 lines
1.0 KiB
BlitzBasic
BBCLASSEXTEND = "nativesdk"
|
|
|
|
require qemu.inc
|
|
|
|
# error: a parameter list without types is only allowed in a function definition
|
|
# void (*_function)(sigval_t);
|
|
COMPATIBLE_HOST_libc-musl = 'null'
|
|
|
|
DEPENDS = "glib-2.0 zlib pixman bison-native"
|
|
|
|
RDEPENDS_${PN}_class-target += "bash"
|
|
|
|
EXTRA_OECONF_append_class-target = " --target-list=${@get_qemu_target_list(d)}"
|
|
EXTRA_OECONF_append_class-target_mipsarcho32 = "${@bb.utils.contains('BBEXTENDCURR', 'multilib', ' --disable-capstone', '', d)}"
|
|
EXTRA_OECONF_append_class-nativesdk = " --target-list=${@get_qemu_target_list(d)}"
|
|
|
|
do_install_append_class-nativesdk() {
|
|
${@bb.utils.contains('PACKAGECONFIG', 'gtk+', 'make_qemu_wrapper', '', d)}
|
|
}
|
|
|
|
PACKAGECONFIG ??= " \
|
|
fdt sdl kvm \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \
|
|
"
|
|
PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer glx', '', d)} \
|
|
"
|