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,52 @@
|
||||
From 077bbd32e8b7474dc5f153997732e1e6aec7fad6 Mon Sep 17 00:00:00 2001
|
||||
Message-Id: <077bbd32e8b7474dc5f153997732e1e6aec7fad6.1697120796.git.joerg.sommer@navimatix.de>
|
||||
From: =?UTF-8?q?J=C3=B6rg=20Sommer?= <joerg.sommer@navimatix.de>
|
||||
Date: Thu, 12 Oct 2023 16:22:59 +0200
|
||||
Subject: [PATCH] netconfig: remove tcp6, udp6 on --disable-ipv6
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
If the configuration for IPv6 is disabled, the netconfig should not contain
|
||||
settings for tcp6 and udp6.
|
||||
|
||||
The test for the configure option didn't work, because it check the wrong
|
||||
variable.
|
||||
|
||||
Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
|
||||
Upstream-Status: Submitted [libtirpc-devel@lists.sourceforge.net]
|
||||
Upstream-Status: Submitted [linux-nfs@vger.kernel.org]
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
doc/Makefile.am | 5 +++++
|
||||
2 files changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index fe6c517..b687f8d 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -64,7 +64,7 @@ fi
|
||||
AC_ARG_ENABLE(ipv6,
|
||||
[AC_HELP_STRING([--disable-ipv6], [Disable IPv6 support @<:@default=no@:>@])],
|
||||
[],[enable_ipv6=yes])
|
||||
-AM_CONDITIONAL(INET6, test "x$disable_ipv6" != xno)
|
||||
+AM_CONDITIONAL(INET6, test "x$enable_ipv6" != xno)
|
||||
if test "x$enable_ipv6" != xno; then
|
||||
AC_DEFINE(INET6, 1, [Define to 1 if IPv6 is available])
|
||||
fi
|
||||
diff --git a/doc/Makefile.am b/doc/Makefile.am
|
||||
index d42ab90..b9678f6 100644
|
||||
--- a/doc/Makefile.am
|
||||
+++ b/doc/Makefile.am
|
||||
@@ -2,3 +2,8 @@ dist_sysconf_DATA = netconfig bindresvport.blacklist
|
||||
|
||||
CLEANFILES = cscope.* *~
|
||||
DISTCLEANFILES = Makefile.in
|
||||
+
|
||||
+if ! INET6
|
||||
+install-exec-hook:
|
||||
+ $(SED) -i '/^tcp6\|^udp6/d' "$(DESTDIR)$(sysconfdir)"/netconfig
|
||||
+endif
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
SUMMARY = "Transport-Independent RPC library"
|
||||
DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux"
|
||||
SECTION = "libs/network"
|
||||
HOMEPAGE = "http://sourceforge.net/projects/libtirpc/"
|
||||
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \
|
||||
file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
|
||||
|
||||
PROVIDES = "virtual/librpc"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \
|
||||
file://ipv6.patch \
|
||||
"
|
||||
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/libtirpc/files/libtirpc/"
|
||||
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/"
|
||||
SRC_URI[sha256sum] = "1e0b0c7231c5fa122e06c0609a76723664d068b0dba3b8219b63e6340b347860"
|
||||
|
||||
CVE_STATUS[CVE-2021-46828] = "fixed-version: fixed in 1.3.3rc1 so not present in 1.3.3"
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
PACKAGECONFIG ??= "\
|
||||
${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \
|
||||
"
|
||||
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6"
|
||||
PACKAGECONFIG[gssapi] = "--enable-gssapi,--disable-gssapi,krb5"
|
||||
|
||||
do_install:append() {
|
||||
test -e ${D}${sysconfdir}/netconfig && chown root:root ${D}${sysconfdir}/netconfig
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user