Files
tqma6-yocto-mirror/sources/meta-tq/meta-dumpling/recipes-libraries/ethos-u-driver-stack/ethos-u-driver-stack_23.08.bb
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 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)
2026-03-01 21:14:11 +00:00

39 lines
1.1 KiB
BlitzBasic

SUMMARY = "The Linux driver stack for Arm(R) Ethos(TM)-U NPU"
DESCRIPTION = "The Linux driver stack for Arm(R) Ethos(TM)-U provides \
an example of how a rich operating system like Linux can dispatch \
inferences to an Arm Cortex(R)-M subsystem, consisting of an Arm \
Cortex-M of choice and an Arm Ethos-U NPU."
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e3fc50a88d0a364313df4b21ef20c29e"
DEPENDS = "flatbuffers python3-pybind11 python3-pybind11-native"
SRC_URI = "${ETHOS_U_SRC};branch=${SRCBRANCH}"
ETHOS_U_SRC ?= "git://github.com/nxp-imx/ethos-u-driver-stack-imx.git;protocol=https"
SRCBRANCH = "lf-6.6.23_2.0.0"
SRCREV = "2acb7e2626fe3ff8764019e385829105a6e210bb"
S = "${WORKDIR}/git"
inherit cmake setuptools3
SETUPTOOLS_BUILD_ARGS = "build_ext --library-dirs ${B}/driver_library"
do_configure() {
cmake_do_configure
}
do_compile () {
cmake_do_compile
setuptools3_do_compile
}
do_install () {
cmake_do_install
setuptools3_do_install
}
RDEPENDS:${PN} = "flatbuffers python3-numpy python3-pillow"
COMPATIBLE_MACHINE = "(mx93-nxp-bsp)"