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,34 @@
From be56e955a32e5e9da0be32008afb8a8ee60e9b56 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 24 May 2023 19:31:23 -0700
Subject: [PATCH] cgdb: Do not search for cgdb.txt in build dir
If we do cross builds it encodes the build time workdir here and it wont
be useful to look into this dir since cross-built cgdb may not run on
build host and build workdir will not exist on target
Upstream-Status: Inappropriate [Cross-compile specific]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
cgdb/interface.cpp | 5 -----
1 file changed, 5 deletions(-)
diff --git a/cgdb/interface.cpp b/cgdb/interface.cpp
index dc58137..d3aab5e 100644
--- a/cgdb/interface.cpp
+++ b/cgdb/interface.cpp
@@ -1568,11 +1568,6 @@ void if_display_help(void)
fs_util_get_path(PKGDATADIR, "cgdb.txt", cgdb_help_file);
- /* File doesn't exist. Try to find cgdb.txt in the build dir in case
- * the user is running a built cgdb binary directly. */
- if (!fs_verify_file_exists(cgdb_help_file))
- fs_util_get_path(TOPBUILDDIR, "doc/cgdb.txt", cgdb_help_file);
-
ret_val = source_set_exec_line(src_viewer, cgdb_help_file, 1, 0);
if (ret_val == 0)
--
2.40.1

View File

@@ -0,0 +1,20 @@
SUMMARY = "curses-based interface to GDB"
DESCRIPTION = "cgdb is a lightweight curses (terminal-based) interface to the GNU Debugger (GDB)."
HOMEPAGE = "http://cgdb.github.io/"
SECTION = "devel"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "flex-native readline ncurses"
inherit autotools texinfo
SRC_URI = "http://cgdb.me/files/${BP}.tar.gz \
file://0001-cgdb-Do-not-search-for-cgdb.txt-in-build-dir.patch"
SRC_URI[sha256sum] = "0d38b524d377257b106bad6d856d8ae3304140e1ee24085343e6ddf1b65811f1"
CACHED_CONFIGUREVARS = "ac_cv_file__dev_ptmx=yes ac_cv_rl_version=6.2 ac_cv_file__proc_self_status=yes"
EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR} \
--with-ncurses=${STAGING_LIBDIR}"
RDEPENDS:${PN} = "gdb"