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,47 @@
|
||||
From 87fc7761cff5931a58984c7f7e78f421a0660e0e Mon Sep 17 00:00:00 2001
|
||||
From: Tom Hochstein <tom.hochstein@nxp.com>
|
||||
Date: Wed, 22 Apr 2020 13:40:04 -0500
|
||||
Subject: [PATCH] meson: Add missing wayland dependency on EGL
|
||||
|
||||
The build was not finding egl.pc due to this
|
||||
missing dependency.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
|
||||
|
||||
---
|
||||
meson.build | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
Index: git/meson.build
|
||||
===================================================================
|
||||
--- git.orig/meson.build
|
||||
+++ git/meson.build
|
||||
@@ -65,6 +65,7 @@ dep_gl = _dep_null
|
||||
dep_egl = _dep_null
|
||||
dep_wayland_client = _dep_null
|
||||
dep_wayland_egl = _dep_null
|
||||
+dep_wayland_wayland_egl = _dep_null
|
||||
dep_wayland_scanner = _dep_null
|
||||
dep_wayland_proto = _dep_null
|
||||
dep_x11_xcb = _dep_null
|
||||
@@ -106,7 +107,8 @@ else
|
||||
dep_wayland_client = dependency(
|
||||
'wayland-client', version : '>= 1.10', required : get_option('wayland'),
|
||||
)
|
||||
- dep_wayland_egl = dependency(
|
||||
+ dep_wayland_egl = dependency('egl', required : get_option('wayland'))
|
||||
+ dep_wayland_wayland_egl = dependency(
|
||||
'wayland-egl', version : '>= 9.1', required : get_option('wayland'),
|
||||
)
|
||||
dep_wayland_scanner = dependency(
|
||||
@@ -124,7 +126,7 @@ else
|
||||
wayland_xdg_shell_xml = join_paths(dep_wayland_proto.get_variable(pkgconfig: 'pkgdatadir'),
|
||||
'stable/xdg-shell/xdg-shell.xml')
|
||||
endif
|
||||
- build_wayland = dep_egl.found() and dep_wayland_client.found() and dep_wayland_egl.found() and dep_wayland_scanner.found() and dep_wayland_proto.found()
|
||||
+ build_wayland = dep_egl.found() and dep_wayland_client.found() and dep_wayland_egl.found() and dep_wayland_scanner.found() and dep_wayland_proto.found() and dep_wayland_wayland_egl.found()
|
||||
|
||||
# We're interested only in the headers provided
|
||||
# FINISHME: make x11_xcb and udev compile-only dependency
|
||||
@@ -0,0 +1,40 @@
|
||||
From 12ac4372cc6a66e83b61f8510bdaa4f11c72113d Mon Sep 17 00:00:00 2001
|
||||
From: Tom Hochstein <tom.hochstein@nxp.com>
|
||||
Date: Wed, 22 Apr 2020 14:08:36 -0500
|
||||
Subject: [PATCH] meson: Separate surfaceless option from x11
|
||||
|
||||
Allow surfaceless build separate from the x11 option.
|
||||
Also require gbm for surfaceless build.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
|
||||
|
||||
---
|
||||
meson.build | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -72,6 +72,7 @@ dep_udev = _dep_null
|
||||
dep_cocoa = _dep_null
|
||||
dep_core_foundation = _dep_null
|
||||
dep_gl_headers = _dep_null
|
||||
+dep_surfaceless = _dep_null
|
||||
|
||||
# Get dependencies
|
||||
if build_wgl
|
||||
@@ -96,10 +97,11 @@ else
|
||||
dep_egl = dependency('egl', required : get_option('gbm'))
|
||||
dep_gbm = dependency('gbm', required : get_option('gbm'))
|
||||
dep_udev = dependency('libudev', required : get_option('gbm'))
|
||||
+ dep_surfaceless_egl = dependency('egl', required : get_option('surfaceless_egl'))
|
||||
+ dep_surfaceless_gbm = dependency('gbm', required : get_option('surfaceless_egl'))
|
||||
build_gbm = dep_egl.found() and dep_gbm.found() and dep_udev.found()
|
||||
|
||||
- dep_egl = dependency('egl', required : get_option('surfaceless_egl'))
|
||||
- build_surfaceless = dep_egl.found()
|
||||
+ build_surfaceless = dep_surfaceless_egl.found() and dep_surfaceless_gbm.found()
|
||||
|
||||
dep_egl = dependency('egl', required : get_option('wayland'))
|
||||
dep_wayland_client = dependency(
|
||||
@@ -0,0 +1,18 @@
|
||||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-meson-Add-missing-wayland-dependency-on-EGL.patch \
|
||||
file://0002-meson-Separate-surfaceless-option-from-x11.patch \
|
||||
"
|
||||
|
||||
PACKAGECONFIG_IMXGPU_X11 = ""
|
||||
PACKAGECONFIG_IMXGPU_X11:imxgpu3d = "x11-egl glx"
|
||||
PACKAGECONFIG_IMXGPU_GBM = "gbm"
|
||||
PACKAGECONFIG_IMXGPU_GBM:mx6-nxp-bsp = ""
|
||||
PACKAGECONFIG_IMXGPU_GBM:mx7-nxp-bsp = ""
|
||||
PACKAGECONFIG:imxgpu = " \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', \
|
||||
bb.utils.contains('DISTRO_FEATURES', 'x11', '${PACKAGECONFIG_IMXGPU_X11}', \
|
||||
'', d), d)} \
|
||||
${PACKAGECONFIG_IMXGPU_GBM} \
|
||||
"
|
||||
Reference in New Issue
Block a user