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,32 @@
From a2ccd98076c2ac81830234555edf362ee19a337d Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 25 Mar 2024 09:00:41 -0700
Subject: [PATCH] include libgen.h for basename
basename prototype has been removed from string.h from latest musl [1]
compilers e.g. clang-18 flags the absense of prototype as error. therefore
include libgen.h for providing it.
[1] https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7
Upstream-Status: Submitted [Emailed patch to Author]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
aer-inject.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/aer-inject.c b/aer-inject.c
index 74e7f72..eed1211 100644
--- a/aer-inject.c
+++ b/aer-inject.c
@@ -11,6 +11,7 @@
*/
#include <stdio.h>
+#include <libgen.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
--
2.44.0

View File

@@ -0,0 +1,30 @@
SUMMARY = "Inject PCIE AER errors on the software level into a running Linux kernel."
DESCRIPTION = "\
aer-inject allows to inject PCIE AER errors on the software \
level into a running Linux kernel. This is intended for \
validation of the PCIE driver error recovery handler and \
PCIE AER core handler."
HOMEPAGE = "https://git.kernel.org/cgit/linux/kernel/git/gong.chen/aer-inject.git/"
SECTION = "pcie/misc"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://README;beginline=25;endline=38;md5=643c2332ec702691a87ba6ea9499b2d6"
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git;protocol=https;branch=master \
file://0001-include-libgen.h-for-basename.patch \
"
SRCREV = "9bd5e2c7886fca72f139cd8402488a2235957d41"
S = "${WORKDIR}/git"
DEPENDS = "bison-native"
do_compile() {
oe_runmake CFLAGS="-Wall -D_GNU_SOURCE"
}
do_install() {
oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install
}
FILES:${PN} += "${prefix}/aer-inject"
BBCLASSEXTEND = "native nativesdk"