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,83 @@
From af256680926e166ac21bc0f11172ea6c077a9b55 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 9 Mar 2024 10:40:48 -0800
Subject: [PATCH] Adopt to new gnulib read_file/fread_file signature
It now expects a flag parameter in latest gnulib
see [1]
[1] https://public-inbox.org/bug-gnulib/87tv01c1z2.fsf-ueno@gnu.org/
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/dutil_linux.c | 4 ++--
src/dutil_posix.c | 2 +-
src/ncftool.c | 2 +-
src/ncftransform.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/dutil_linux.c b/src/dutil_linux.c
index 742153a..eb72eb2 100644
--- a/src/dutil_linux.c
+++ b/src/dutil_linux.c
@@ -1113,7 +1113,7 @@ static void add_link_info(struct netcf *ncf,
xasprintf(&path, "/sys/class/net/%s/operstate", ifname);
ERR_NOMEM(!path, ncf);
- state = read_file(path, &length);
+ state = read_file(path, 0, &length);
if (!state) {
/* missing operstate is *not* an error. It could be due to an
* alias interface, which has no entry in /sys/class/net at
@@ -1132,7 +1132,7 @@ static void add_link_info(struct netcf *ncf,
FREE(path);
xasprintf(&path, "/sys/class/net/%s/speed", ifname);
ERR_NOMEM(path == NULL, ncf);
- speed = read_file(path, &length);
+ speed = read_file(path, 0, &length);
if (!speed && errno == EINVAL) {
/* attempts to read $ifname/speed result in EINVAL if the
* interface is ifconfiged down (which isn't exactly the
diff --git a/src/dutil_posix.c b/src/dutil_posix.c
index 1313514..b9884f0 100644
--- a/src/dutil_posix.c
+++ b/src/dutil_posix.c
@@ -211,7 +211,7 @@ int run_program(struct netcf *ncf, const char *const *argv, char **output)
"Failed to create file stream for output while executing '%s': %s",
argv_str, errbuf);
- *output = fread_file(outfile, &outlen);
+ *output = fread_file(outfile, 0, &outlen);
ERR_THROW_STRERROR(*output == NULL, ncf, EEXEC,
"Error while reading output from execution of '%s': %s",
argv_str, errbuf);
diff --git a/src/ncftool.c b/src/ncftool.c
index f1b5642..c878cb0 100644
--- a/src/ncftool.c
+++ b/src/ncftool.c
@@ -351,7 +351,7 @@ static int cmd_define(const struct command *cmd) {
struct netcf_if *nif = NULL;
int result = CMD_RES_ERR;
- xml = read_file(fname, &length);
+ xml = read_file(fname, 0, &length);
if (xml == NULL) {
fprintf(stderr, "Failed to read %s\n", fname);
goto done;
diff --git a/src/ncftransform.c b/src/ncftransform.c
index fbabfc3..4c9a56d 100644
--- a/src/ncftransform.c
+++ b/src/ncftransform.c
@@ -54,7 +54,7 @@ int main(int argc, char **argv) {
if (argc != 3 || (STRNEQ(argv[1], "get") && STRNEQ(argv[1], "put")))
die("Usage: ncftransform (put|get) FILE\n");
- in_xml = read_file(argv[2], &length);
+ in_xml = read_file(argv[2], 0, &length);
if (in_xml == NULL)
die("Failed to read %s\n", argv[2]);
--
2.44.0

View File

@@ -0,0 +1,75 @@
SUMMARY = "netcf"
DESCRIPTION = "netcf is a cross-platform network configuration library."
HOMEPAGE = "https://pagure.io/netcf"
SECTION = "libs"
LICENSE = "LGPL-2.1-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=fb919cc88dbe06ec0b0bd50e001ccf1f"
SRCREV = "2c5d4255857531bc09d91dcd02e86545f29004d4"
PV .= "+git"
SRC_URI = "git://pagure.io/netcf.git;protocol=https;branch=master \
file://0001-Adopt-to-new-gnulib-read_file-fread_file-signature.patch"
UPSTREAM_CHECK_GITTAGREGEX = "release-(?P<pver>(\d+(\.\d+)+))"
DEPENDS += "augeas libnl libxslt libxml2"
do_configure[depends] += "${MLPREFIX}gnulib:do_populate_sysroot"
S = "${WORKDIR}/git"
inherit gettext autotools perlnative pkgconfig systemd
EXTRA_OECONF:append:class-target = " --with-driver=redhat"
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
PACKAGECONFIG[systemd] = "--with-sysinit=systemd,--with-sysinit=initscripts,"
EXTRA_AUTORECONF += "-I ${S}/gnulib/m4"
do_configure:prepend() {
currdir=`pwd`
cd ${S}
# avoid bootstrap cloning gnulib on every configure
# the dir starts out empty from the pkg, but unconditionally blow it
# away so if we reconfigure due to gnulib sysroot sig changes, we will
# get the newer gnulib content into the build here.
rm -rf ${S}/.gnulib
cp -rf ${STAGING_DATADIR}/gnulib ${S}/.gnulib
# --force to avoid errors on reconfigure e.g if recipes changed we depend on
# | bootstrap: running: libtoolize --quiet
# | libtoolize: error: 'libltdl/COPYING.LIB' exists: use '--force' to overwrite
# | ...
./bootstrap --force --no-git --gnulib-srcdir=.gnulib
cd $currdir
}
do_install:append() {
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
install -d ${D}${systemd_unitdir}/system
if [ -d "${D}${libdir}/systemd/system" ]; then
if [ "${systemd_unitdir}" != "${libdir}/systemd" ] ; then
mv ${D}${libdir}/systemd/system/* ${D}${systemd_unitdir}/system/
rm -rf ${D}${libdir}/systemd/
fi
elif [ "${systemd_unitdir}" != "${nonarch_libdir}/systemd" ] ; then
mv ${D}${nonarch_libdir}/systemd/system/* ${D}${systemd_unitdir}/system/
rm -rf ${D}${nonarch_libdir}/systemd/
fi
else
mv ${D}${sysconfdir}/rc.d/init.d/ ${D}${sysconfdir}
rm -rf ${D}${sysconfdir}/rc.d/
fi
}
FILES:${PN} += " \
${libdir} \
${nonarch_libdir} \
"
SYSTEMD_SERVICE:${PN} = "netcf-transaction.service"