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)
This commit is contained in:
Siggi (OpenClaw Agent)
2026-03-01 20:58:18 +00:00
commit 16accb6b24
15086 changed files with 1292356 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
require nanopb.inc
inherit python3-dir
DEPENDS = "protobuf-native"
RDEPENDS:${PN} += "python3-protobuf"
EXTRA_OECMAKE += " \
-Dnanopb_PYTHON_INSTDIR_OVERRIDE=${PYTHON_SITEPACKAGES_DIR} \
-Dnanopb_BUILD_RUNTIME=OFF \
-Dnanopb_BUILD_GENERATOR=ON \
"
FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}"

View File

@@ -0,0 +1,17 @@
require nanopb.inc
EXTRA_OECMAKE += " \
-Dnanopb_PROTOC_PATH=/bin/false \
-DBUILD_SHARED_LIBS=ON \
-Dnanopb_BUILD_RUNTIME=ON \
-Dnanopb_BUILD_GENERATOR=OFF \
"
# Maintain compatability with old header locations for packages
# which haven't yet migrated to `nanopb/pb*.h`
do_install:append() {
for hdr in ${D}${includedir}/nanopb/*; do
ln -sv nanopb/$(basename "$hdr") ${D}${includedir}/
done
}

View File

@@ -0,0 +1,16 @@
SUMMARY = "Combined nanopb package"
PV = "1.0"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
DEPENDS = " \
nanopb-generator \
nanopb-runtime \
"
RDEPENDS:${PN} = " \
nanopb-generator \
nanopb-runtime \
"

View File

@@ -0,0 +1,13 @@
DESCRIPTION="Protocol Buffers with small code size"
LICENSE="Zlib"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9db4b73a55a3994384112efcdb37c01f"
SRC_URI = "git://github.com/nanopb/nanopb.git;branch=master;protocol=https"
SRCREV = "6cfe48d6f1593f8fa5c0f90437f5e6522587745e"
S = "${WORKDIR}/git"
inherit cmake
BBCLASSEXTEND = "native nativesdk"