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,43 @@
|
||||
From 7c998657c1787fcad8f0a502063adff71d78a140 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Mon, 12 Jun 2023 09:37:10 -0700
|
||||
Subject: [PATCH] testsuite: Add tmp-orc.c for missing
|
||||
_orc_code_orc_deinterleave2_s16
|
||||
|
||||
Fixes
|
||||
| aarch64-yoe-linux-ld.lld: error: undefined symbol: _orc_code_orc_deinterleave2_s16
|
||||
| >>> referenced by schroorc.h:1312 (../schroedinger/schroorc.h:1312)
|
||||
| >>> wavelet_max_gain.o:(iwt_ref)
|
||||
| >>> referenced by schroorc.h:1312 (../schroedinger/schroorc.h:1312)
|
||||
| >>> wavelet_max_gain.o:(iwt_ref)
|
||||
|
|
||||
| aarch64-yoe-linux-ld.lld: error: undefined symbol: _orc_code_orc_interleave2_s16
|
||||
| >>> referenced by wavelet_max_gain.c:281 (/usr/src/debug/schroedinger/1.0.11-r0/testsuite/wavelet_max_gain.c:281)
|
||||
| >>> wavelet_max_gain.o:(iiwt_ref)
|
||||
| >>> referenced by wavelet_max_gain.c:281 (/usr/src/debug/schroedinger/1.0.11-r0/testsuite/wavelet_max_gain.c:281)
|
||||
| >>> wavelet_max_gain.o:(iiwt_ref)
|
||||
| clang-16: error: linker command failed with exit code 1 (use -v to see invocation)
|
||||
| make[3]: *** [Makefile:1147: wavelet_max_gain] Error 1
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
testsuite/Makefile.am | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
|
||||
index 6ee1130..762ecf2 100644
|
||||
--- a/testsuite/Makefile.am
|
||||
+++ b/testsuite/Makefile.am
|
||||
@@ -100,6 +100,7 @@ wavelet_2d_SOURCES = wavelet_2d.c
|
||||
nodist_wavelet_2d_SOURCES = $(top_srcdir)/schroedinger/tmp-orc.c
|
||||
|
||||
wavelet_max_gain_SOURCES = wavelet_max_gain.c
|
||||
+nodist_wavelet_max_gain_SOURCES = $(top_srcdir)/schroedinger/tmp-orc.c
|
||||
|
||||
wavelet_noise_2d_SOURCES = wavelet_noise_2d.c
|
||||
|
||||
--
|
||||
2.41.0
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
Use the version of orcc in the sysroot not the one from the host
|
||||
|
||||
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
|
||||
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
|
||||
|
||||
Upstream-Status: Inappropriate [configuration]
|
||||
|
||||
Index: schroedinger-1.0.11/configure.ac
|
||||
===================================================================
|
||||
--- schroedinger-1.0.11.orig/configure.ac
|
||||
+++ schroedinger-1.0.11/configure.ac
|
||||
@@ -54,7 +54,7 @@ if test "x${HAVE_ORC}" != xyes ; then
|
||||
AC_ERROR([orc-0.4 >= $ORC_VER is required])
|
||||
fi
|
||||
SCHRO_PKG_DEPS="$SCHRO_PKG_DEPS orc-0.4 >= $ORC_VER"
|
||||
-ORCC=`$PKG_CONFIG --variable=orcc orc-0.4`
|
||||
+ORCC=$STAGING_DIR`$PKG_CONFIG --variable=orcc orc-0.4`
|
||||
AC_SUBST(ORCC)
|
||||
AM_CONDITIONAL(HAVE_ORCC, test "x$cross_compiling" != xyes)
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
SUMMARY = "Dirac compressed video encoder/decoder"
|
||||
HOMEPAGE = "http://schrodinger.sourceforge.net/"
|
||||
LICENSE = "MPL-1.1 | GPL-2.0-only | LGPL-2.0-only | MIT"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d91a46405fc074b88c963cc4f2a0aae9 \
|
||||
file://COPYING.GPL;md5=e181e3b7c66f5f96921d813c1074f833 \
|
||||
file://COPYING.LGPL;md5=38c893e21baec4cd75ad800ba9e2410a \
|
||||
file://COPYING.MIT;md5=8b345371b3536b4ce37ead1eafc88221 \
|
||||
file://COPYING.MPL;md5=0117647fecb9a932c25a7bbfc0333c37"
|
||||
|
||||
DEPENDS = "orc-native orc"
|
||||
|
||||
SRC_URI = "https://download.videolan.org/contrib/${BPN}/${BP}.tar.gz \
|
||||
file://0001-testsuite-Add-tmp-orc.c-for-missing-_orc_code_orc_de.patch \
|
||||
file://configure.ac.patch"
|
||||
|
||||
SRC_URI[md5sum] = "da6af08e564ca1157348fb8d92efc891"
|
||||
SRC_URI[sha256sum] = "1e572a0735b92aca5746c4528f9bebd35aa0ccf8619b22fa2756137a8cc9f912"
|
||||
|
||||
EXTRA_OECONF += "STAGING_DIR=${STAGING_DIR_NATIVE}"
|
||||
|
||||
inherit autotools-brokensep pkgconfig gtk-doc
|
||||
|
||||
Reference in New Issue
Block a user