- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
1.0 KiB
BlitzBasic
28 lines
1.0 KiB
BlitzBasic
BBCLASSEXTEND = "nativesdk"
|
|
|
|
require qemu.inc
|
|
|
|
DEPENDS += "glib-2.0 zlib pixman"
|
|
|
|
DEPENDS:append:libc-musl = " libucontext"
|
|
|
|
CFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', '-DEGL_NO_X11=1', d)}"
|
|
|
|
RDEPENDS:${PN}-common: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)}"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
fdt sdl kvm pie slirp \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'alsa pulseaudio xen', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer epoxy', '', d)} \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)} \
|
|
"
|
|
PACKAGECONFIG:class-nativesdk ??= "fdt sdl kvm pie slirp \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer epoxy', '', d)} \
|
|
"
|
|
# ppc32 hosts are no longer supported in qemu
|
|
COMPATIBLE_HOST:powerpc = "null"
|