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,38 @@
|
||||
From 3aa4024ac4107e68552be4dfe5fce511900629c9 Mon Sep 17 00:00:00 2001
|
||||
From: Max Krummenacher <max.krummenacher@toradex.com>
|
||||
Date: Mon, 11 Jul 2022 19:38:19 +0000
|
||||
Subject: [PATCH] Revert "protocol: no found wayland-scanner with Yocto
|
||||
toolchain"
|
||||
|
||||
This reverts commit 7859a762617682bd804e210ad3bda6bdcd3ea24a.
|
||||
|
||||
With openembedded commit e525db4eb9 ("wayland: update 1.20.0 -> 1.21.0")
|
||||
package config seems no longer to provide the path to the native
|
||||
weston scanner.
|
||||
|
||||
Thus the build fails with:
|
||||
|
||||
| Run-time dependency wayland-scanner found: YES 1.21.0
|
||||
| Program /usr/bin/wayland-scanner found: NO
|
||||
|
|
||||
| ../git/protocol/meson.build:2:0: ERROR: Program '/usr/bin/wayland-scanner' not found or not executable
|
||||
|
||||
Dropping weston 9.0.0-imx commit 7859a762 (protocol: no found
|
||||
wayland-scanner with Yocto toolchain") fixes the issue.
|
||||
|
||||
Upstream-Status: Inappropriate [Cross-compile specific]
|
||||
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
|
||||
---
|
||||
protocol/meson.build | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Index: git/protocol/meson.build
|
||||
===================================================================
|
||||
--- git.orig/protocol/meson.build
|
||||
+++ git/protocol/meson.build
|
||||
@@ -1,4 +1,4 @@
|
||||
-dep_scanner = dependency('wayland-scanner', native: false)
|
||||
+dep_scanner = dependency('wayland-scanner', native: true)
|
||||
prog_scanner = find_program(dep_scanner.get_variable(pkgconfig: 'wayland_scanner'))
|
||||
|
||||
dep_wp = dependency('wayland-protocols', version: '>= 1.31',
|
||||
@@ -0,0 +1,45 @@
|
||||
From 2a7c1797dd65467b7a0be63aa598307b92fb83b5 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 14 Dec 2023 09:13:54 -0800
|
||||
Subject: [PATCH] libweston,tools: Include libgen.h for basename signature
|
||||
|
||||
Latest musl has removed the declaration from string.h [1] as it only
|
||||
implements POSIX version alone and string.h in glibc implements GNU
|
||||
version of basename. This now results in compile errors on musl.
|
||||
|
||||
This might be a warning with older compilers but it is error with
|
||||
Clang-17+ as it treats -Wimplicit-function-declaration as error
|
||||
|
||||
[1] https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7
|
||||
|
||||
Upstream-Status: Submitted [https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1420]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
libweston/backend-drm/libbacklight.c | 1 +
|
||||
tools/zunitc/src/zunitc_impl.c | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
diff --git a/libweston/backend-drm/libbacklight.c b/libweston/backend-drm/libbacklight.c
|
||||
index ca7f2d68..74690fa7 100644
|
||||
--- a/libweston/backend-drm/libbacklight.c
|
||||
+++ b/libweston/backend-drm/libbacklight.c
|
||||
@@ -41,6 +41,7 @@
|
||||
#include <drm.h>
|
||||
#include <fcntl.h>
|
||||
#include <malloc.h>
|
||||
+#include <libgen.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
diff --git a/tools/zunitc/src/zunitc_impl.c b/tools/zunitc/src/zunitc_impl.c
|
||||
index 18f03015..9b460fa0 100644
|
||||
--- a/tools/zunitc/src/zunitc_impl.c
|
||||
+++ b/tools/zunitc/src/zunitc_impl.c
|
||||
@@ -27,6 +27,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
+#include <libgen.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
# SPDX-FileCopyrightText: Huawei Inc.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
|
||||
if [[ -x "/usr/lib/weston/systemd-notify.so" ]]; then
|
||||
add_weston_module "systemd-notify.so"
|
||||
fi
|
||||
@@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=Weston
|
||||
Comment=Wayland Compostitor
|
||||
Exec=weston
|
||||
Icon=weston
|
||||
Terminal=false
|
||||
Categories=Utility;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
if type Xwayland >/dev/null 2>/dev/null; then
|
||||
mkdir -m 775 -p /tmp/.X11-unix
|
||||
chown root:video /tmp/.X11-unix
|
||||
fi
|
||||
Reference in New Issue
Block a user