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,43 @@
From e43524868bb4901703d63876f9d49f73ca75b3ab Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 12 May 2021 20:27:52 -0700
Subject: [PATCH] Revert "Fix problem with regression tests on recent glibc."
This reverts commit 3a9d32eb59194b989656548755066ccd9feb36ac.
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
configure.ac | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8a9373c..8cda28d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -284,11 +284,9 @@ AC_TYPE_SSIZE_T
#
# Checks for libraries and functions.
#
-# We test for pthread_detach because glibc 2.22 includes
-# pthread_create but not pthread_detach.
if test "$have_w32_system" = no; then
- AC_SEARCH_LIBS([pthread_detach],[pthread])
- case "x$ac_cv_search_pthread_detach" in
+ AC_SEARCH_LIBS([pthread_create],[pthread])
+ case "x$ac_cv_search_pthread_create" in
xno)
have_pthread=no
;;
@@ -297,7 +295,7 @@ if test "$have_w32_system" = no; then
;;
*)
have_pthread=yes
- config_libs="$config_libs $ac_cv_search_pthread_detach"
+ config_libs="$config_libs $ac_cv_search_pthread_create"
;;
esac
if test "$have_pthread" != no; then
--
2.31.1

View File

@@ -0,0 +1,49 @@
Added npth pkgconfig file
Upstream-Status: Pending
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Index: npth-1.1/src/npth.pc.in
===================================================================
--- /dev/null
+++ npth-1.1/src/npth.pc.in
@@ -0,0 +1,10 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: npth
+Description: a new portable posix threading library
+Version: @VERSION@
+Libs: -L${libdir} -lnpth -lpthread
+Cflags: -I${includedir}
Index: npth-1.1/src/Makefile.am
===================================================================
--- npth-1.1.orig/src/Makefile.am
+++ npth-1.1/src/Makefile.am
@@ -27,8 +27,10 @@
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
## Process this file with automake to produce Makefile.in
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = npth.pc
-EXTRA_DIST = libnpth.vers
+EXTRA_DIST = libnpth.vers npth.pc
# versioninfo.rc.in
nodist_include_HEADERS = npth.h
Index: npth-1.1/configure.ac
===================================================================
--- npth-1.1.orig/configure.ac
+++ npth-1.1/configure.ac
@@ -337,6 +337,7 @@ src/Makefile
w32/Makefile
tests/Makefile])
AC_CONFIG_FILES(npth-config, chmod +x npth-config)
+AC_CONFIG_FILES([src/npth.pc])
AC_OUTPUT
echo "

View File

@@ -0,0 +1,29 @@
SUMMARY = "New GNU Portable Threads library"
DESCRIPTION = "nPth is a library to provide the GNU Pth API and thus a non-preemptive threads implementation. "
HOMEPAGE = "https://www.gnu.org/software/pth/"
SECTION = "libs"
LICENSE = "LGPL-2.0-or-later"
LIC_FILES_CHKSUM = "\
file://COPYING.LIB;md5=2caced0b25dfefd4c601d92bd15116de\
"
UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
SRC_URI = "${GNUPG_MIRROR}/npth/npth-${PV}.tar.bz2 \
file://pkgconfig.patch \
file://0001-Revert-Fix-problem-with-regression-tests-on-recent-g.patch \
"
SRC_URI[md5sum] = "375d1a15ad969f32d25f1a7630929854"
SRC_URI[sha256sum] = "1393abd9adcf0762d34798dc34fdcf4d0d22a8410721e76f1e3afcd1daa4e2d1"
BINCONFIG = "${bindir}/npth-config"
inherit autotools binconfig-disabled multilib_header
FILES:${PN} = "${libdir}/libnpth.so.*"
FILES:${PN}-dev += "${bindir}/npth-config"
do_install:append() {
oe_multilib_header npth.h
}
BBCLASSEXTEND = "native nativesdk"