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:
18
sources/poky/meta/recipes-devtools/make/make.inc
Normal file
18
sources/poky/meta/recipes-devtools/make/make.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
SUMMARY = "GNU tool that controls the build process"
|
||||
DESCRIPTION = "Make is a tool which controls the generation of executables and other non-source files of a \
|
||||
program from the program's source files. Make gets its knowledge of how to build your program from a file \
|
||||
called the makefile, which lists each of the non-source files and how to compute it from other files."
|
||||
HOMEPAGE = "http://www.gnu.org/software/make/"
|
||||
SECTION = "devel"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.gz \
|
||||
"
|
||||
|
||||
inherit autotools gettext pkgconfig texinfo
|
||||
|
||||
PROVIDES = "virtual/make"
|
||||
|
||||
# Otherwise $CXX leaks into /usr/bin/make
|
||||
do_configure:prepend() {
|
||||
unset CXX
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
From 8309601775d9442416329a77f7dcfd8aa799e9a6 Mon Sep 17 00:00:00 2001
|
||||
From: Jens Rehsack <sno@netbsd.org>
|
||||
Date: Fri, 21 Feb 2020 17:39:56 +0100
|
||||
Subject: [PATCH 1/2] m4/getloadavg.m4: restrict AIX specific test on AIX
|
||||
|
||||
When cross compiling for a system without getloadavg, do not try add
|
||||
additional linker paths unless it's absolutely necessary.
|
||||
|
||||
Signed-off-by: Jens Rehsack <sno@netbsd.org>
|
||||
---
|
||||
Upstream-Status: Pending
|
||||
m4/getloadavg.m4 | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/m4/getloadavg.m4 b/m4/getloadavg.m4
|
||||
index 3bd2a14..696c5de 100644
|
||||
--- a/m4/getloadavg.m4
|
||||
+++ b/m4/getloadavg.m4
|
||||
@@ -42,6 +42,8 @@ AC_CHECK_FUNC([getloadavg], [],
|
||||
fi
|
||||
|
||||
if test $gl_func_getloadavg_done = no; then
|
||||
+ AS_CASE([$host_os],
|
||||
+ [aix*], [
|
||||
# There is a commonly available library for RS/6000 AIX.
|
||||
# Since it is not a standard part of AIX, it might be installed locally.
|
||||
gl_getloadavg_LIBS=$LIBS
|
||||
@@ -49,6 +51,7 @@ AC_CHECK_FUNC([getloadavg], [],
|
||||
AC_CHECK_LIB([getloadavg], [getloadavg],
|
||||
[LIBS="-lgetloadavg $LIBS" gl_func_getloadavg_done=yes],
|
||||
[LIBS=$gl_getloadavg_LIBS])
|
||||
+ ], [:])
|
||||
fi
|
||||
|
||||
# Set up the replacement function if necessary.
|
||||
--
|
||||
2.17.1
|
||||
|
||||
13
sources/poky/meta/recipes-devtools/make/make_4.4.1.bb
Normal file
13
sources/poky/meta/recipes-devtools/make/make_4.4.1.bb
Normal file
@@ -0,0 +1,13 @@
|
||||
LICENSE = "GPL-3.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e"
|
||||
require make.inc
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-m4-getloadavg.m4-restrict-AIX-specific-test-on-AIX.patch \
|
||||
"
|
||||
|
||||
EXTRA_OECONF += "--without-guile"
|
||||
|
||||
SRC_URI[sha256sum] = "dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user