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:
@@ -0,0 +1,28 @@
|
||||
From 272491297564513c4ce49a11bc1ecc523a3afd63 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Fri, 15 Mar 2024 11:05:54 -0700
|
||||
Subject: [PATCH] Mimic GNU basename() API for non-glibc library e.g. musl
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/lucasdemarchi/dietsplash/pull/7]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/util.h | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/src/util.h b/src/util.h
|
||||
index 1f4c3ef..a3ab54a 100644
|
||||
--- a/src/util.h
|
||||
+++ b/src/util.h
|
||||
@@ -60,6 +60,9 @@
|
||||
*/
|
||||
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + _array_size_chk(arr))
|
||||
|
||||
+#if !defined(__GLIBC__)
|
||||
+#define basename(src) (strrchr(src,'/') ? strrchr(src,'/')+1 : src)
|
||||
+#endif
|
||||
|
||||
#define DIE_PREFIX "[" PACKAGE_NAME "] ERR: "
|
||||
#define LOG_SUFFIX "\n"
|
||||
--
|
||||
2.44.0
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
From 65e8e3c9c69f41778b6308c2f8f3262c82c6f3e1 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 29 Jun 2017 13:57:53 -0700
|
||||
Subject: [PATCH] configure.ac: Do not demand linker hash-style
|
||||
|
||||
This helps fixing on architectures e.g. mips where gnu hash
|
||||
is not supported
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Upstream-Status: Pending
|
||||
|
||||
configure.ac | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e1dba23..7bcc039 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -65,7 +65,6 @@ CC_CHECK_CFLAGS_APPEND([ \
|
||||
-ffunction-sections \
|
||||
-fdata-sections \
|
||||
-Wl,-O1 \
|
||||
- -Wl,--hash-style=gnu \
|
||||
-Wl,--as-needed \
|
||||
-Wl,--gc-sections])
|
||||
|
||||
--
|
||||
2.13.2
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
SUMMARY = "Simple bootsplash for systemd systems"
|
||||
LICENSE = "GPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
||||
|
||||
# Really, no depends besides a C library
|
||||
|
||||
PV = "0.3+git"
|
||||
|
||||
SRCREV = "8bed71d860bbb0c8792fa2a1179c9beeae84d577"
|
||||
SRC_URI = "git://github.com/lucasdemarchi/dietsplash.git;branch=master;protocol=https \
|
||||
file://0001-configure.ac-Do-not-demand-linker-hash-style.patch \
|
||||
file://0001-Mimic-GNU-basename-API-for-non-glibc-library-e.g.-mu.patch \
|
||||
"
|
||||
|
||||
inherit autotools
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
EXTRA_OECONF = " --with-systemdsystemunitdir=${systemd_unitdir}/system \
|
||||
--disable-staticimages --with-rootdir=${root_prefix}"
|
||||
|
||||
FILES:${PN} += "${systemd_unitdir}/system/"
|
||||
Reference in New Issue
Block a user