diff mbox series

[meta-arago,kirkstone/master] kmscube: Remove no longer needed bbappend for kmscube

Message ID 20230208233504.19817-1-afd@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,kirkstone/master] kmscube: Remove no longer needed bbappend for kmscube | expand

Commit Message

Andrew Davis Feb. 8, 2023, 11:35 p.m. UTC
We now can build the latest upstream kmscube without any bbappends.

Signed-off-by: Andrew Davis <afd@ti.com>
---
 .../0001-meson-check-for-gles3-support.patch  | 50 -------------------
 .../kmscube/kmscube_%.bbappend                | 11 ----
 2 files changed, 61 deletions(-)
 delete mode 100644 meta-arago-distro/recipes-graphics/kmscube/kmscube/0001-meson-check-for-gles3-support.patch
 delete mode 100644 meta-arago-distro/recipes-graphics/kmscube/kmscube_%.bbappend
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-graphics/kmscube/kmscube/0001-meson-check-for-gles3-support.patch b/meta-arago-distro/recipes-graphics/kmscube/kmscube/0001-meson-check-for-gles3-support.patch
deleted file mode 100644
index 1ebeee07..00000000
--- a/meta-arago-distro/recipes-graphics/kmscube/kmscube/0001-meson-check-for-gles3-support.patch
+++ /dev/null
@@ -1,50 +0,0 @@ 
-From 9f7efd751a3cdceaeefa6c215a81aa6368857e40 Mon Sep 17 00:00:00 2001
-From: Gowtham Tammana <g-tammana@ti.com>
-Date: Mon, 28 Sep 2020 21:15:52 -0500
-Subject: [PATCH] meson: check for gles3 support
-
-Some cores don't support gles3, so compile gles3 targets
-conditionally.
-
-Upstream-Status: Pending
-
-Signed-off-by: Gowtham Tammana <g-tammana@ti.com>
----
- meson.build | 22 +++++++++++++++-------
- 1 file changed, 15 insertions(+), 7 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index df9c315..8bba902 100644
---- a/meson.build
-+++ b/meson.build
-@@ -91,12 +91,20 @@ else
-   message('Building without gstreamer support')
- endif
- 
--executable('kmscube', sources, dependencies : dep_common, install : true)
-+# GLES3 check
-+gles3_h = false
-+if dep_gles2.found()
-+  gles3_h = cc.has_header('GLES3/gl3.h', dependencies: dep_gles2)
-+endif
- 
-+executable('kmscube', sources, dependencies : dep_common, install : true)
- 
--executable('texturator', files(
--	'common.c',
--	'drm-legacy.c',
--	'drm-common.c',
--	'texturator.c',
--), dependencies : dep_common, install : true)
-+if gles3_h
-+  message('Building with GLES3 support')
-+  executable('texturator', files(
-+    'common.c',
-+    'drm-legacy.c',
-+    'drm-common.c',
-+    'texturator.c',
-+  ), dependencies : dep_common, install : true)
-+endif
--- 
-2.17.1
-
diff --git a/meta-arago-distro/recipes-graphics/kmscube/kmscube_%.bbappend b/meta-arago-distro/recipes-graphics/kmscube/kmscube_%.bbappend
deleted file mode 100644
index df1ca872..00000000
--- a/meta-arago-distro/recipes-graphics/kmscube/kmscube_%.bbappend
+++ /dev/null
@@ -1,11 +0,0 @@ 
-FILESEXTRAPATHS:append := "${THISDIR}/${PN}:"
-
-SRCREV = "76bb57d539cb43d267e561024c34e031bf351e04"
-
-SRC_URI += " \
-file://0001-meson-check-for-gles3-support.patch \
-"
-
-CFLAGS += "-fcommon"
-
-PR:append = ".arago2"