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,31 @@
DESCRIPTION = "DPAA2 Accelerated I/O Processing service layer"
SECTION = "dpaa2"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=faf479bdc4702d8033049f97e153f876"
BASEDEPENDS = ""
S = "${WORKDIR}/git"
SRC_URI = "git://github.com/nxp-qoriq/aiopsl;protocol=https;nobranch=1"
SRCREV = "87d83d8e99770325cc7ad9e10965c9959e7cb828"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
DEMOS_PATH:ls2088a = "LS2088A"
DEMOS_PATH:ls1088a = "LS1088A"
do_install () {
install -d ${D}/usr/aiop/bin
install -d ${D}/usr/aiop/
cp -rf ${S}/demos/images/* ${D}/usr/aiop/bin
cp -rf ${S}/misc/setup/scripts ${D}/usr/aiop/
cp -rf ${S}/misc/setup/traffic_files/ ${D}/usr/aiop/
}
FILES:${PN} += "/usr/aiop/*"
INSANE_SKIP:${PN} += "arch"
INHIBIT_PACKAGE_STRIP = "1"
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
COMPATIBLE_MACHINE = "(ls2088a|ls1088a)"

View File

@@ -0,0 +1,24 @@
DESCRIPTION = "Decompression Compression Engine Userspace Utils"
SECTION = "dpaa2"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=956df5ea6cfe0a1dcf2dee7ca37c0cdf"
SRC_URI = "git://github.com/nxp-qoriq/dce;protocol=https;nobranch=1 \
git://github.com/nxp-qoriq/qbman_userspace;protocol=https;nobranch=1;name=qbman;destsuffix=git/lib/qbman_userspace \
file://0001-support-user-merge.patch \
"
SRCREV = "88ef2e8c3845532ee64cea4349fd38fb2bd5f807"
SRCREV_qbman = "2f92993a9f34e5221d6b36c63b9e30ef703e9ac3"
SRCREV_FORMAT = "default_qbman"
S = "${WORKDIR}/git"
EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"'
do_install () {
oe_runmake install DESTDIR=${D}
}
INSANE_SKIP:${PN} = "ldflags"
COMPATIBLE_MACHINE = "(qoriq-arm64)"

View File

@@ -0,0 +1,31 @@
From d4aa7f64db5841242257c5b30dd652afd0f6ff68 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Wed, 20 Oct 2021 14:00:35 +0800
Subject: [PATCH] support user merge
Use Yocto base_sbindir to replace hardcode ./sbin
Upstream-Status: Inappropriate [oe specific]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 62eff25..18b79b1 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,8 @@ CFLAGS += -fdiagnostics-color
LDFLAGS = -static -Wl,--hash-style=gnu ${EXTRA_CFLAGS}
-PREFIX = $(DESTDIR)/sbin
+base_sbindir ?= ./sbin
+PREFIX = $(DESTDIR)/${base_sbindir}
HEADER_DEPENDENCIES = $(subst .o,.d,$(OBJS))
--
2.27.0

View File

@@ -0,0 +1,36 @@
From e506c4ea7e576e713fa64569b6784bdc22b3205f Mon Sep 17 00:00:00 2001
From: Ting Liu <ting.liu@nxp.com>
Date: Fri, 9 Oct 2020 13:13:13 +0530
Subject: [PATCH] add -fcommon to fix gcc 10 build issue
Fix:
| ...ld: src/aiop_logger.o:(.bss+0x0): multiple definition of `_debug_flag'; src/aiop_tool.o:(.bss+0x0): first defined here
| ...ld: src/aiop_logger.o:(.bss+0x2): multiple definition of `_verbose_flag'; src/aiop_tool.o:(.bss+0x2): first defined here
Reference: https://gcc.gnu.org/gcc-10/porting_to.html
As a workaround, legacy C code where all tentative definitions should be
placed into a common block can be compiled with -fcommon.
Upstream-Status: Pending
Signed-off-by: Ting Liu <ting.liu@nxp.com>
---
Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index f10dda2..f568788 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ BINDIR = bin
# FLAGS
-CFLAGS = -Wall
+CFLAGS = -Wall -fcommon
#CFLAGS += -g -O0 # Enable for Debugging
CFLAGS += -I$(top_builddir)/include
CFLAGS += -I$(top_builddir)/src
--
2.17.1

View File

@@ -0,0 +1,28 @@
From bb5ab9463db2f79c11c60808fdccd5d57d31fdac Mon Sep 17 00:00:00 2001
From: Chunrong Guo <chunrong.guo@nxp.com>
Date: Fri, 7 Sep 2018 14:54:30 +0800
Subject: [PATCH] remove libio.h
update for glibc libio.h removal in 2.28+
Upstream-Status: Pending
Signed-off-by: BJ DevOps Team <bjdevops@NXP1.onmicrosoft.com>
---
flib/mc/fsl_mc_sys.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/flib/mc/fsl_mc_sys.h b/flib/mc/fsl_mc_sys.h
index b01db32..7ba8800 100644
--- a/flib/mc/fsl_mc_sys.h
+++ b/flib/mc/fsl_mc_sys.h
@@ -52,7 +52,6 @@ struct fsl_mc_io {
#else /* __linux_driver__ */
#include <stdio.h>
-#include <libio.h>
#include <stdint.h>
#include <errno.h>
#include <sys/uio.h>
--
2.7.4

View File

@@ -0,0 +1,28 @@
DESCRIPTION = "AIOP Tool is a userspace application for performing operations \
on an AIOP Tile using MC interfaces. This application enables the user to \
fetch status of tile, load a valid ELF file and run it on a tile and get and set \
time of day."
SECTION = "dpaa2"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
SRC_URI = "git://github.com/nxp-qoriq/gpp-aioptool;protocol=https;nobranch=1 \
file://0001-remove-libio.h.patch \
file://0001-add-fcommon-to-fix-gcc-10-build-issue.patch \
"
SRCREV = "6ead470dde043f3ca67f1ba19b313dd64ec199e1"
S = "${WORKDIR}/git"
TARGET_CC_ARCH += "${LDFLAGS}"
EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}" KERNEL_PATH="${STAGING_KERNEL_DIR}"'
do_configure[depends] += "virtual/kernel:do_shared_workdir"
do_install () {
oe_runmake install DESTDIR=${D}
chown -R root:root ${D}${bindir}/aiop_tool
}
COMPATIBLE_MACHINE = "(ls2088a|ls1088a)"

View File

@@ -0,0 +1,41 @@
SUMMARY = "DPAA2 Management Complex Firmware"
LICENSE = "NXP-Binary-EULA"
LIC_FILES_CHKSUM = "file://LICENSE;md5=0701845051a61f6012009d7d6d11b32b"
inherit deploy
INHIBIT_DEFAULT_DEPS = "1"
SRC_URI = "git://github.com/nxp/qoriq-mc-binary;protocol=https;nobranch=1"
SRCREV = "7d82686272f8a60b803818bbc7c5396819ee3b06"
S = "${WORKDIR}/git"
REGLEX:ls2088a = "ls2088a"
REGLEX:ls2080a = "ls2080a"
REGLEX:ls1088a = "ls1088a"
REGLEX:lx2160a = "lx216xa"
REGLEX:lx2162a = "lx216xa"
do_install () {
install -d ${D}/boot
install -m 755 ${S}/${REGLEX}/*.itb ${D}/boot
}
do_deploy () {
install -d ${DEPLOYDIR}/mc_app
install -m 755 ${S}/${REGLEX}/*.itb ${DEPLOYDIR}/mc_app
# make a symlink to the latest binary
for mc_binary in `find ${DEPLOYDIR}/mc_app -type f -printf "%f\n" |sort`;do
ln -sfT ${mc_binary} ${DEPLOYDIR}/mc_app/mc.itb
done
}
addtask deploy before do_build after do_install
PACKAGES += "${PN}-image"
FILES:${PN}-image += "/boot"
INHIBIT_PACKAGE_STRIP = "1"
COMPATIBLE_MACHINE = "(qoriq-arm64)"
PACKAGE_ARCH = "${MACHINE_ARCH}"

View File

@@ -0,0 +1,26 @@
From 5392152e704ff001c41de03445d668227237a87e Mon Sep 17 00:00:00 2001
From: Ting Liu <ting.liu@nxp.com>
Date: Fri, 15 Oct 2021 09:36:04 +0530
Subject: [PATCH] disable manpage generation
Upstream-Status: Inappropriate [Cross-compile specific]
Signed-off-by: Ting Liu <ting.liu@nxp.com>
---
Makefile | 1 -
1 file changed, 1 deletion(-)
diff --git a/Makefile b/Makefile
index ee669ae..ab6e499 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,6 @@ install: restool scripts/ls-main scripts/ls-append-dpl scripts/ls-debug scripts/
install -D -m 755 scripts/ls-debug $(DESTDIR)$(bindir)/ls-debug
$(foreach symlink, $(RESTOOL_SCRIPT_SYMLINKS), sh -c "cd $(DESTDIR)$(bindir) && ln -sf ls-main $(symlink)" ;)
install -D -m 755 scripts/restool_completion.sh $(DESTDIR)$(bindir_completion)/restool
- install -m 0644 -D $(MANPAGE) $(call get_manpage_destination,$(MANPAGE))
clean:
rm -f $(OBJ) $(MANPAGE) \
--
2.25.1

View File

@@ -0,0 +1,25 @@
SUMMARY = "DPAA2 Resource Manager Tool"
LICENSE = "BSD-3-Clause | GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=83af78c71766dd5fb1c1c3dd64a75ee7"
SRC_URI = "git://github.com/nxp-qoriq/restool;protocol=https;nobranch=1 \
file://disable-manpage-generation.patch \
"
SRCREV = "8c45e04363bf2a984a87b24d1dac80a286dd40d8"
S = "${WORKDIR}/git"
inherit bash-completion
EXTRA_OEMAKE = 'CC="${CC}" MANPAGE= EXTRA_CFLAGS="-O2 -Wno-missing-field-initializers -Wno-missing-braces -Wno-maybe-uninitialized -Wno-date-time"'
do_install () {
oe_runmake install DESTDIR=${D}
}
COMPATIBLE_MACHINE = "(qoriq-arm64)"
PACKAGE_ARCH = "${MACHINE_ARCH}"
RDEPENDS:${PN} += "bash dtc"
RDEPENDS:${PN}-bash-completion += "bash"

View File

@@ -0,0 +1,38 @@
SUMMARY = "Soft Parser Configuration tool"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=163b09a1c249a6ff2b28da1ceca2e0a8"
DEPENDS = "libxml2 fmlib tclap"
SRC_URI = "git://github.com/nxp-qoriq/spc;protocol=https;nobranch=1"
SRCREV = "b8d69580e5c6aeeb9f1354ee2faed6e0134eaef4"
S = "${WORKDIR}/git"
EXTRA_OEMAKE = 'FMD_USPACE_HEADER_PATH="${STAGING_INCDIR}/fmd" \
FMD_USPACE_LIB_PATH="${STAGING_LIBDIR}" LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2" \
TCLAP_HEADER_PATH="${STAGING_INCDIR}" '
EXTRA_OEMAKE:class-native = 'FMCHOSTMODE=1 FMD_USPACE_HEADER_PATH="${STAGING_INCDIR}/fmd" \
FMD_USPACE_LIB_PATH="${STAGING_LIBDIR}" LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2" \
TCLAP_HEADER_PATH="${STAGING_INCDIR}" '
EXTRA_OEMAKE_PLATFORM ?= ""
do_compile () {
oe_runmake -C source
}
do_install () {
install -d ${D}/${bindir}
install -m 755 ${S}/source/spc ${D}/${bindir}
install -d ${D}${sysconfdir}/spc/config
install -m 644 ${S}${sysconfdir}/spc/config/* ${D}${sysconfdir}/spc/config
}
PARALLEL_MAKE = ""
PACKAGE_ARCH = "${MACHINE_SOCARCH}"
COMPATIBLE_MACHINE = "(qoriq-arm64)"