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,28 @@
From 0a948d8d91b789e9c9b60136fada75b1d464af63 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Fri, 2 Sep 2022 18:31:27 -0700
Subject: [PATCH] con2fbmap: Add missing include on string.h
strerror() is from string.h therefore include it to fix -Wimplicit-function-declaration
warnings
Upstream-Status: Submitted [https://gitlab.com/pibox/con2fbmap/-/merge_requests/1]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/con2fbmap.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/con2fbmap.c b/src/con2fbmap.c
index 7831931..7a2e870 100644
--- a/src/con2fbmap.c
+++ b/src/con2fbmap.c
@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h> /* for strerror */
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
--
2.37.3

View File

@@ -0,0 +1,19 @@
# Copyright (C) 2020 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
SUMMARY = "Simple utility for swapping an fbtft-based device as the console."
HOMEPAGE = "https://gitlab.com/pibox/con2fbmap"
LICENSE = "GPL-3.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
SECTION = "console/utils"
DEPENDS = ""
SRCREV = "61ed2f28b294b1ebeb767df8cb5fcd391709c8e2"
SRC_URI = "git://gitlab.com/pibox/con2fbmap.git;protocol=https;branch=master \
file://0001-con2fbmap-Add-missing-include-on-string.h.patch \
"
S = "${WORKDIR}/git"
inherit autotools