- 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)
24 lines
632 B
BlitzBasic
24 lines
632 B
BlitzBasic
SUMMARY = "Helper utilities needed by the runqemu script"
|
|
LICENSE = "GPL-2.0-only"
|
|
RDEPENDS:${PN} = "qemu-system-native"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/qemu-oe-bridge-helper.c;endline=4;md5=ae00a3bab86f2caaa8462eacda77f4d7"
|
|
|
|
SRC_URI = "file://qemu-oe-bridge-helper.c"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit native
|
|
|
|
do_compile() {
|
|
${CC} ${CFLAGS} ${LDFLAGS} -Wall qemu-oe-bridge-helper.c -o qemu-oe-bridge-helper
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install qemu-oe-bridge-helper ${D}${bindir}/
|
|
}
|
|
|
|
DEPENDS += "qemu-system-native unfs3-native pseudo-native"
|
|
addtask addto_recipe_sysroot after do_populate_sysroot before do_build
|