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,54 @@
|
||||
From e886222c70d4b251f0785f670477b7aee938e5af Mon Sep 17 00:00:00 2001
|
||||
From: Chen Qi <Qi.Chen@windriver.com>
|
||||
Date: Wed, 21 Feb 2024 13:55:41 +0800
|
||||
Subject: [PATCH] exe/Makefile.am: add CROSS_LAUNCHER to run odbc_config
|
||||
|
||||
In case of cross compilation, the odbc_config cannot run, the error message
|
||||
would be like below:
|
||||
|
||||
/bin/bash: line 1: ../exe/odbc_config: cannot execute binary file: Exec format error
|
||||
|
||||
Add CROSS_LAUNCHER to allow the possibility of running odbc_config correctly in
|
||||
case of cross compilation.
|
||||
|
||||
For example, here's a possible value for it (Yocto project environment, aarch64 target).
|
||||
export CROSS_LAUNCHER="PSEUDO_UNLOAD=1 qemu-aarch64 -r 5.15 \
|
||||
-L /PATH/TO/unixodbc/2.3.11/recipe-sysroot \
|
||||
-E LD_LIBRARY_PATH=/PATH/TO/unixodbc/2.3.11/recipe-sysroot//usr/lib:/PATH/TO/unixodbc/2.3.11/recipe-sysroot//usr/lib "
|
||||
|
||||
Other projects can use the launcher they like to allow correct generation of
|
||||
the odbc.pc file in cross compilation environment.
|
||||
|
||||
Upstream-Status: Submitted [Personal Email, nick.gorham@easysoft.com]
|
||||
|
||||
As said in the official website, https://www.unixodbc.org/, the way to report bug and send
|
||||
out patch is via personal email. So there's a public link above.
|
||||
|
||||
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
||||
---
|
||||
exe/Makefile.am | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/exe/Makefile.am b/exe/Makefile.am
|
||||
index 03f3d5a..5f33cf2 100644
|
||||
--- a/exe/Makefile.am
|
||||
+++ b/exe/Makefile.am
|
||||
@@ -59,11 +59,13 @@ slencheck_SOURCES = slencheck.c
|
||||
dltest_DEPENDENCIES = $(LTDLDEPS)
|
||||
dltest_LDADD = $(LIBLTDL)
|
||||
|
||||
+CROSS_LAUNCHER ?= ""
|
||||
+
|
||||
all-am:
|
||||
- @sed "s![@]ODBC_ULEN[@]!`$(top_builddir)/exe/odbc_config$(EXEEXT) --ulen`!" \
|
||||
+ @sed "s![@]ODBC_ULEN[@]!`$(CROSS_LAUNCHER)$(top_builddir)/exe/odbc_config$(EXEEXT) --ulen`!" \
|
||||
$(top_builddir)/DriverManager/odbc.pc > $(top_builddir)/exe/odbc.pc.tmp
|
||||
@mv -f $(top_builddir)/exe/odbc.pc.tmp $(top_builddir)/DriverManager/odbc.pc
|
||||
- @sed "s![@]ODBC_CFLAGS[@]!`$(top_builddir)/exe/odbc_config$(EXEEXT) --cflags | sed 's/ -I.*//'`!" \
|
||||
+ @sed "s![@]ODBC_CFLAGS[@]!`$(CROSS_LAUNCHER)$(top_builddir)/exe/odbc_config$(EXEEXT) --cflags | sed 's/ -I.*//'`!" \
|
||||
$(top_builddir)/DriverManager/odbc.pc > $(top_builddir)/exe/odbc.pc.tmp
|
||||
@mv -f $(top_builddir)/exe/odbc.pc.tmp $(top_builddir)/DriverManager/odbc.pc
|
||||
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
From 76beb0938ef14276123996bfd99df23b0c7f0982 Mon Sep 17 00:00:00 2001
|
||||
From: Soumya Sambu <soumya.sambu@windriver.com>
|
||||
Date: Fri, 7 Jun 2024 11:10:46 +0000
|
||||
Subject: [PATCH] PostgreSQL driver: Fix incompatible pointer-to-integer types
|
||||
|
||||
These result in out-of-bounds stack writes on 64-bit architectures
|
||||
(caller has 4 bytes, callee writes 8 bytes), and seem to have gone
|
||||
unnoticed on little-endian architectures (although big-endian
|
||||
architectures must be broken).
|
||||
|
||||
This change is required to avoid a build failure with GCC 14.
|
||||
|
||||
CVE: CVE-2024-1013
|
||||
|
||||
Upstream-Status: Backport [https://github.com/lurcher/unixODBC/commit/45f501e1be2db6b017cc242c79bfb9de32b332a1]
|
||||
|
||||
Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com>
|
||||
---
|
||||
Drivers/Postgre7.1/info.c | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/Drivers/Postgre7.1/info.c b/Drivers/Postgre7.1/info.c
|
||||
index 63ac91f..2216ecd 100644
|
||||
--- a/Drivers/Postgre7.1/info.c
|
||||
+++ b/Drivers/Postgre7.1/info.c
|
||||
@@ -1779,14 +1779,14 @@ char *table_name;
|
||||
char index_name[MAX_INFO_STRING];
|
||||
short fields_vector[8];
|
||||
char isunique[10], isclustered[10];
|
||||
-SDWORD index_name_len, fields_vector_len;
|
||||
+SQLLEN index_name_len, fields_vector_len;
|
||||
TupleNode *row;
|
||||
int i;
|
||||
HSTMT hcol_stmt;
|
||||
StatementClass *col_stmt, *indx_stmt;
|
||||
char column_name[MAX_INFO_STRING], relhasrules[MAX_INFO_STRING];
|
||||
char **column_names = 0;
|
||||
-Int4 column_name_len;
|
||||
+SQLLEN column_name_len;
|
||||
int total_columns = 0;
|
||||
char error = TRUE;
|
||||
ConnInfo *ci;
|
||||
@@ -2136,7 +2136,7 @@ HSTMT htbl_stmt;
|
||||
StatementClass *tbl_stmt;
|
||||
char tables_query[STD_STATEMENT_LEN];
|
||||
char attname[MAX_INFO_STRING];
|
||||
-SDWORD attname_len;
|
||||
+SQLLEN attname_len;
|
||||
char pktab[MAX_TABLE_LEN + 1];
|
||||
Int2 result_cols;
|
||||
|
||||
--
|
||||
2.40.0
|
||||
@@ -0,0 +1,43 @@
|
||||
Subject: [PATCH] do not use libltdl source directory
|
||||
|
||||
Don't use the included libltdl, use the one provided
|
||||
by our libtool instead.
|
||||
|
||||
Upstream-Status: Inappropriate [configuration]
|
||||
|
||||
Signed-off-by: Song.Li <Song.Li@windriver.com>
|
||||
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
||||
---
|
||||
Makefile.am | 1 -
|
||||
configure.ac | 2 --
|
||||
2 files changed, 3 deletions(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 4628401..e8989bf 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -11,7 +11,6 @@ SUBDIRS = \
|
||||
log \
|
||||
lst \
|
||||
ini \
|
||||
- libltdl \
|
||||
odbcinst \
|
||||
DriverManager \
|
||||
exe \
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e4bcdaf..58aa5c5 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -144,9 +144,7 @@ dnl AC_CONFIG_MACRO_DIR([libltdl/m4])
|
||||
dnl LT_CONFIG_LTDL_DIR([libltdl])
|
||||
dnl LTDL_INIT
|
||||
|
||||
-LT_CONFIG_LTDL_DIR([libltdl])
|
||||
LT_INIT([dlopen])
|
||||
-LTDL_INIT([convenience])
|
||||
|
||||
dnl Substitute INCLTDL and LIBLTDL in the Makefiles
|
||||
AC_SUBST(LTDLINCL)
|
||||
--
|
||||
2.12.3
|
||||
|
||||
Reference in New Issue
Block a user