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:
Siggi (OpenClaw Agent)
2026-03-01 20:58:18 +00:00
commit 16accb6b24
15086 changed files with 1292356 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
From 2e871d6d6d13955ff363ff756adfdd257e72e9e8 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Thu, 10 Aug 2023 23:58:43 -0700
Subject: [PATCH] Fix warnings found by clang compiler
Fix diagnostics found with -Wdeprecated-non-prototype using clang
compiler
e.g.
| ../git/src/server.c:108:35: error: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype] | 108 | if (backend->input_backend->move(x, y, event) < 0) { | | ^
Upstream-Status: Submitted [https://gitlab.com/CodethinkLabs/qad/qad/-/merge_requests/33]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
include/backend.h | 8 ++++----
src/backends/input/input_common.h | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/include/backend.h b/include/backend.h
index 8f4c7c1..4bfe510 100644
--- a/include/backend.h
+++ b/include/backend.h
@@ -41,10 +41,10 @@ typedef struct qad_screen_buffer_s {
} qad_screen_buffer_t;
typedef struct qad_backend_input_s {
- int (*move)();
- int (*button)();
- int (*touch)();
- int (*swipe)();
+ int (*move)(int, int, int);
+ int (*button)(int, int);
+ int (*touch)(int, int, int, int);
+ int (*swipe)(int, int, int, int, int, int);
void *data;
} qad_backend_input_t;
diff --git a/src/backends/input/input_common.h b/src/backends/input/input_common.h
index 8e099a5..f2ea73f 100644
--- a/src/backends/input/input_common.h
+++ b/src/backends/input/input_common.h
@@ -28,7 +28,7 @@
#define BTN_DOWN 1
#define BTN_UP 0
-qad_backend_input_t *create_input_backend();
+qad_backend_input_t *create_input_backend(char input_type[]);
// int move(int x, int y, int event);
--
2.41.0

View File

@@ -0,0 +1,28 @@
SUMMARY = "Simple, REST-API compliant daemon for automated testing"
DESCRIPTION = " This is a simple, REST-API compliant daemon which makes \
automated testing on hardware possible by removing the need for physical \
intervention as Q.A.D allows inputs to be injected via http/https requests. \
This both eliminates the need to physically interact with the rig and allows \
for tasks to be carried out entirely automatically."
LICENSE = "MIT & GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=402cce7fbcb6ea9ab5a0378dd7f40806 \
file://openqa/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
"
SRC_URI = "git://gitlab.com/CodethinkLabs/qad/qad;branch=main;protocol=https \
file://0001-Fix-warnings-found-by-clang-compiler.patch"
SRCREV = "ae0c099c1fdc0ca6f5d631cea6b302937122b362"
S = "${WORKDIR}/git"
PV = "0.0+git"
DEPENDS = "cjson libmicrohttpd libdrm libpng"
FILES:${PN} += "qad"
inherit meson pkgconfig
do_install () {
install -d ${D}${bindir}
install -p -m 755 qad ${D}${bindir}/
}