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,80 @@
|
||||
From 1e1ed4d58909360997648ca9524ab16441f5474b Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 6 Jul 2023 10:15:41 -0700
|
||||
Subject: [PATCH] Fix implicit function declarations
|
||||
|
||||
Clang 17+ has been finding these errors since its enforcing C99
|
||||
more than other compilers
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
TEST/v2test_ec.c | 1 +
|
||||
TEST/v2test_ein.c | 1 +
|
||||
backend/cimxml/cimXmlParser.c | 2 +-
|
||||
backend/cimxml/grammar.c | 2 ++
|
||||
backend/cimxml/grammar.h | 1 +
|
||||
5 files changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/TEST/v2test_ec.c b/TEST/v2test_ec.c
|
||||
index ad34dcc..940ca57 100644
|
||||
--- a/TEST/v2test_ec.c
|
||||
+++ b/TEST/v2test_ec.c
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include "cmcimacs.h"
|
||||
+#include "show.h"
|
||||
|
||||
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
||||
/*
|
||||
diff --git a/TEST/v2test_ein.c b/TEST/v2test_ein.c
|
||||
index c1b4692..ede95c1 100644
|
||||
--- a/TEST/v2test_ein.c
|
||||
+++ b/TEST/v2test_ein.c
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include "cmcimacs.h"
|
||||
+#include "show.h"
|
||||
|
||||
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
||||
void showProperty( CMPIData , char * );
|
||||
diff --git a/backend/cimxml/cimXmlParser.c b/backend/cimxml/cimXmlParser.c
|
||||
index d1ab86e..14f5f5c 100644
|
||||
--- a/backend/cimxml/cimXmlParser.c
|
||||
+++ b/backend/cimxml/cimXmlParser.c
|
||||
@@ -1350,7 +1350,7 @@ ResponseHdr scanCimXmlResponse(const char *xmlData, CMPIObjectPath *cop)
|
||||
|
||||
control.heap = parser_heap_init();
|
||||
|
||||
- control.respHdr.rc = startParsing(&control);
|
||||
+ startParsing(&control);
|
||||
|
||||
parser_heap_term(control.heap);
|
||||
|
||||
diff --git a/backend/cimxml/grammar.c b/backend/cimxml/grammar.c
|
||||
index 6a0a969..522ca9e 100644
|
||||
--- a/backend/cimxml/grammar.c
|
||||
+++ b/backend/cimxml/grammar.c
|
||||
@@ -23,6 +23,8 @@
|
||||
#include "sfcUtil/utilft.h"
|
||||
#include "parserUtil.h"
|
||||
|
||||
+extern CMPIType guessType(char *val);
|
||||
+extern void setClassMethods(CMPIConstClass *cls, XtokMethods *ms);
|
||||
|
||||
static int ct = 0;
|
||||
static int dontLex = 0;
|
||||
diff --git a/backend/cimxml/grammar.h b/backend/cimxml/grammar.h
|
||||
index 00d364f..bafdd42 100644
|
||||
--- a/backend/cimxml/grammar.h
|
||||
+++ b/backend/cimxml/grammar.h
|
||||
@@ -79,3 +79,4 @@ static void valueRefArray(ParserControl *parm, parseUnion *stateUnion);
|
||||
static void valueReference(ParserControl *parm, parseUnion *stateUnion);
|
||||
static void valueReferenceData(ParserControl *parm, parseUnion *stateUnion);
|
||||
|
||||
+void startParsing(ParserControl *parm);
|
||||
--
|
||||
2.41.0
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
From 9981542cb443cdaf9134500b78fe7eda9f99861f Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 7 Sep 2017 21:43:26 -0700
|
||||
Subject: [PATCH] cimxml: Include sys/select.h for fd_set
|
||||
|
||||
define __SOCKADDR_ARG on linux when libc != glibc
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Upstream-Status: Pending
|
||||
backend/cimxml/indicationlistener.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/backend/cimxml/indicationlistener.c b/backend/cimxml/indicationlistener.c
|
||||
index 0d7d9fe..37c45ae 100755
|
||||
--- a/backend/cimxml/indicationlistener.c
|
||||
+++ b/backend/cimxml/indicationlistener.c
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
#include <pthread.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <sys/select.h>
|
||||
#include <netinet/in.h>
|
||||
#include <fcntl.h>
|
||||
#include <errno.h>
|
||||
@@ -36,7 +37,7 @@ static int do_listen=1;
|
||||
#define hdrBufsize 5000
|
||||
#define hdrLimmit 5000
|
||||
|
||||
-#ifdef __APPLE__
|
||||
+#if defined(__APPLE__) || (defined(__linux__) && !defined(__GLIBC__))
|
||||
# define __SOCKADDR_ARG struct sockaddr *__restrict
|
||||
#endif
|
||||
|
||||
--
|
||||
2.14.1
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
SUMMARY = "Small Footprint CIM Client Library"
|
||||
DESCRIPTION = "Small Footprint CIM Client Library Runtime Libraries"
|
||||
HOMEPAGE = "http://www.sblim.org"
|
||||
|
||||
SRC_URI = "http://netcologne.dl.sourceforge.net/project/sblim/${BPN}/${BPN}-${PV}.tar.bz2 \
|
||||
file://0001-cimxml-Include-sys-select.h-for-fd_set.patch \
|
||||
file://0001-Fix-implicit-function-declarations.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "0bac0dec19f17ec065b6c332a56d7bae"
|
||||
SRC_URI[sha256sum] = "1b8f187583bc6c6b0a63aae0165ca37892a2a3bd4bb0682cd76b56268b42c3d6"
|
||||
|
||||
LICENSE = "EPL-1.0"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=f300afd598546add034364cd0a533261"
|
||||
|
||||
DEPENDS = "curl"
|
||||
|
||||
inherit autotools
|
||||
Reference in New Issue
Block a user