- 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)
34 lines
1.0 KiB
BlitzBasic
34 lines
1.0 KiB
BlitzBasic
SUMMARY = "Qemu helper scripts"
|
|
LICENSE = "GPL-2.0-only"
|
|
RDEPENDS:${PN} = "nativesdk-qemu nativesdk-unfs3 nativesdk-pseudo \
|
|
nativesdk-python3-shell nativesdk-python3-fcntl nativesdk-python3-logging \
|
|
"
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/scripts/runqemu;beginline=5;endline=10;md5=ac2b489a58739c7628a2604698db5e7f"
|
|
|
|
|
|
SRC_URI = "file://${COREBASE}/scripts/runqemu \
|
|
file://${COREBASE}/scripts/runqemu-addptable2image \
|
|
file://${COREBASE}/scripts/runqemu-gen-tapdevs \
|
|
file://${COREBASE}/scripts/runqemu-ifup \
|
|
file://${COREBASE}/scripts/runqemu-ifdown \
|
|
file://${COREBASE}/scripts/oe-find-native-sysroot \
|
|
file://${COREBASE}/scripts/runqemu-extract-sdk \
|
|
file://${COREBASE}/scripts/runqemu-export-rootfs \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit nativesdk
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${WORKDIR}${COREBASE}/scripts/oe-* ${D}${bindir}/
|
|
install -m 0755 ${WORKDIR}${COREBASE}/scripts/runqemu* ${D}${bindir}/
|
|
}
|