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,9 @@
[Unit]
Description=Network Performance Testing Server Activation Socket
[Socket]
ListenStream=5000
Accept=true
[Install]
WantedBy=sockets.target

View File

@@ -0,0 +1,8 @@
[Unit]
Description=Network Performance Testing Server
After=local-fs.target
[Service]
User=nobody
ExecStart=/usr/bin/nuttcp -S
StandardInput=socket

View File

@@ -0,0 +1,38 @@
SUMMARY = "network performance measurement tool"
DESCRIPTION = "nuttcp is a network performance measurement tool intended for use by network \
and system managers. Its most basic usage is to determine the raw TCP (or UDP) \
network layer throughput by transferring memory buffers from a source system \
across an interconnecting network to a destination system, either transferring \
data for a specified time interval, or alternatively transferring a specified \
number of bytes."
HOMEPAGE = "http://www.nuttcp.net/Welcome%20Page.html"
LICENSE = "GPL-2.0-only"
SECTION = "net"
LIC_FILES_CHKSUM = "file://${BP}.c;beginline=4;endline=30;md5=496a7c0bb83c07ff528d226bf85e05c5"
UPSTREAM_CHECK_URI = "https://www.nuttcp.net/nuttcp/beta/"
SRC_URI = "http://nuttcp.net/${BPN}/beta/${BP}.c \
file://nuttcp@.service \
file://nuttcp.socket"
SRC_URI[md5sum] = "d3c92c4d2f261221193c3726c1b9a42f"
SRC_URI[sha256sum] = "8c5595bcd27c2fd66831be74c390df078cfb1870aa427f2511ac2586d236c8a1"
S = "${WORKDIR}"
do_compile () {
${CC} ${CFLAGS} ${LDFLAGS} -o nuttcp nuttcp-${PV}.c
}
do_install () {
install -d ${D}${bindir}
install -d ${D}${systemd_system_unitdir}
install -m 0755 nuttcp ${D}${bindir}
install -m 0644 ${WORKDIR}/nuttcp@.service ${D}${systemd_system_unitdir}
install -m 0644 ${WORKDIR}/nuttcp.socket ${D}${systemd_system_unitdir}
}
FILES:${PN} += " \
${bindir} \
${systemd_system_unitdir} \
"