All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib
@ 2020-07-10 14:21 Anibal Limon
  2020-07-10 14:21 ` [PATCH 2/2] recipes-graphics: Add parallel-deqp-runner recipe Anibal Limon
  2020-07-13  2:06 ` [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Khem Raj
  0 siblings, 2 replies; 5+ messages in thread
From: Anibal Limon @ 2020-07-10 14:21 UTC (permalink / raw)
  To: openembedded-devel
  Cc: nicolas.dechesne, Dmitry Baryshkov, Aníbal Limón

From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

Commonly this kind of testing tools are installed in /usr/lib
like piglit, remove version.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
---
 .../vk-gl-cts/opengl-es-cts_3.2.6.1.bb        | 45 +++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb

diff --git a/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
new file mode 100644
index 000000000..226f70027
--- /dev/null
+++ b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
@@ -0,0 +1,45 @@
+DESCRIPTION = "OpenGL CTS"
+LICENSE = "Apache-2.0"
+PR = "r0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
+
+SRC_URI = "\
+	git://github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=${BPN}-${PV};name=vk-gl-cts \
+	git://github.com/google/amber;protocol=https;destsuffix=git/external/amber/src;name=amber;branch=main \
+	git://github.com/KhronosGroup/glslang.git;protocol=https;destsuffix=git/external/glslang/src;name=glslang \
+	git://github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;destsuffix=git/external/spirv-headers/src;name=spirv-headers \
+	git://github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;destsuffix=git/external/spirv-tools/src;name=spirv-tools \
+"
+
+S = "${WORKDIR}/git"
+
+SRCREV_FORMAT = "vk-gl-cts"
+SRCREV_amber = "d26ee22dd7faab1845a531d410f7ec1db407402a"
+SRCREV_glslang = "c538b5d796fb24dd418fdd650c7f76e56bcc3dd8"
+SRCREV_spirv-headers = "e4322e3be589e1ddd44afb20ea842a977c1319b8"
+SRCREV_spirv-tools = "1eb89172a82b436d8037e8a8c29c80f7e1f7df74"
+
+S = "${WORKDIR}/git"
+
+inherit pkgconfig cmake
+
+DEPENDS += "libpng zlib virtual/libgles2 virtual/egl"
+
+EXTRA_OECMAKE_append = "-DDEQP_TARGET=surfaceless"
+
+CTSDIR = "${libdir}/${BPN}"
+
+do_install() {
+	install -d ${D}/${CTSDIR}
+
+	install -m 0755 ${B}/external/openglcts/modules/cts-runner ${D}/${CTSDIR}
+	install -m 0755 ${B}/external/openglcts/modules/glcts ${D}/${CTSDIR}
+	for dir in gl_cts gles2 gles3 gles31 gles32 ; do
+		cp -r ${B}/external/openglcts/modules/$dir ${D}/${CTSDIR}/
+	done
+	install -m 0755 ${B}/modules/gles3/deqp-gles3 ${D}/${CTSDIR}
+
+	rm -r ${D}/${CTSDIR}/*/*.a ${D}/${CTSDIR}/*/cmake_install.cmake ${D}/${CTSDIR}/*/CMakeFiles
+}
+
+FILES_${PN} += "${CTSDIR}"
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] recipes-graphics: Add parallel-deqp-runner recipe
  2020-07-10 14:21 [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Anibal Limon
@ 2020-07-10 14:21 ` Anibal Limon
  2020-07-13  2:06 ` [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Khem Raj
  1 sibling, 0 replies; 5+ messages in thread
From: Anibal Limon @ 2020-07-10 14:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: nicolas.dechesne, Aníbal Limón

Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
---
 ...-WORKAROUND-Remove-vulkan-dependency.patch | 42 +++++++++++++++++++
 .../parallel-deqp-runner_git.bb               | 14 +++++++
 2 files changed, 56 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch
 create mode 100644 meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner_git.bb

diff --git a/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch b/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch
new file mode 100644
index 000000000..0fedfad13
--- /dev/null
+++ b/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch
@@ -0,0 +1,42 @@
+From 2b74a5b160c0500291c554ab5c0944f502e72a42 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linaro.org>
+Date: Thu, 9 Jul 2020 20:00:53 +0200
+Subject: [PATCH] meson.build: WORKAROUND Remove vulkan dependency
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+We need a patch in the source code to allow enable when DISTRO_FEATURES
+contains vulkan.
+
+Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
+---
+ meson.build | 6 ------
+ 1 file changed, 6 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index db97c26..4c1b865 100644
+--- a/meson.build
++++ b/meson.build
+@@ -3,21 +3,15 @@ project('parallel-deqp-runner', ['c', 'cpp'],
+ cpp = meson.get_compiler('cpp')
+ 
+ thread_dep = dependency('threads')
+-vulkan_dep = dependency('vulkan')
+ 
+ fs_dep = cpp.find_library('stdc++fs', required : false)
+ if not fs_dep.found()
+     fs_dep = cpp.find_library('c++fs')
+ endif
+ 
+-
+ deqp_runner = executable('deqp-runner',
+            'src/deqp-runner.cc',
+            dependencies : [thread_dep, fs_dep],
+            install : true)
+ 
+-executable('hang-detection',
+-           'src/hang_detection.c',
+-           dependencies: [vulkan_dep])
+-
+ subdir('test')
diff --git a/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner_git.bb b/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner_git.bb
new file mode 100644
index 000000000..4c02cc55a
--- /dev/null
+++ b/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner_git.bb
@@ -0,0 +1,14 @@
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4f59d6446bf2e004e80df1a0937129fa"
+
+SRC_URI = "git://gitlab.freedesktop.org/mesa/parallel-deqp-runner.git;protocol=https \
+           file://0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch \
+           "
+
+# Modify these as desired
+PV = "2020.06.15+git${SRCPV}"
+SRCREV = "e1642fb691d29b1462504b58916f7f514a963e80"
+
+S = "${WORKDIR}/git"
+
+inherit pkgconfig meson
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib
  2020-07-10 14:21 [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Anibal Limon
  2020-07-10 14:21 ` [PATCH 2/2] recipes-graphics: Add parallel-deqp-runner recipe Anibal Limon
@ 2020-07-13  2:06 ` Khem Raj
  2020-07-13 14:50   ` Anibal Limon
  1 sibling, 1 reply; 5+ messages in thread
From: Khem Raj @ 2020-07-13  2:06 UTC (permalink / raw)
  To: Anibal Limon; +Cc: openembeded-devel, Nicolas Dechesne, Dmitry Baryshkov

fails to compile
musl - https://errors.yoctoproject.org/Errors/Details/420539/
clang - https://errors.yoctoproject.org/Errors/Details/420544/

On Fri, Jul 10, 2020 at 7:21 AM Anibal Limon <anibal.limon@linaro.org> wrote:
>
> From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>
> Commonly this kind of testing tools are installed in /usr/lib
> like piglit, remove version.
>
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
> ---
>  .../vk-gl-cts/opengl-es-cts_3.2.6.1.bb        | 45 +++++++++++++++++++
>  1 file changed, 45 insertions(+)
>  create mode 100644 meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
>
> diff --git a/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
> new file mode 100644
> index 000000000..226f70027
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
> @@ -0,0 +1,45 @@
> +DESCRIPTION = "OpenGL CTS"
> +LICENSE = "Apache-2.0"
> +PR = "r0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
> +
> +SRC_URI = "\
> +       git://github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=${BPN}-${PV};name=vk-gl-cts \
> +       git://github.com/google/amber;protocol=https;destsuffix=git/external/amber/src;name=amber;branch=main \
> +       git://github.com/KhronosGroup/glslang.git;protocol=https;destsuffix=git/external/glslang/src;name=glslang \
> +       git://github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;destsuffix=git/external/spirv-headers/src;name=spirv-headers \
> +       git://github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;destsuffix=git/external/spirv-tools/src;name=spirv-tools \
> +"
> +
> +S = "${WORKDIR}/git"
> +
> +SRCREV_FORMAT = "vk-gl-cts"
> +SRCREV_amber = "d26ee22dd7faab1845a531d410f7ec1db407402a"
> +SRCREV_glslang = "c538b5d796fb24dd418fdd650c7f76e56bcc3dd8"
> +SRCREV_spirv-headers = "e4322e3be589e1ddd44afb20ea842a977c1319b8"
> +SRCREV_spirv-tools = "1eb89172a82b436d8037e8a8c29c80f7e1f7df74"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit pkgconfig cmake
> +
> +DEPENDS += "libpng zlib virtual/libgles2 virtual/egl"
> +
> +EXTRA_OECMAKE_append = "-DDEQP_TARGET=surfaceless"
> +
> +CTSDIR = "${libdir}/${BPN}"
> +
> +do_install() {
> +       install -d ${D}/${CTSDIR}
> +
> +       install -m 0755 ${B}/external/openglcts/modules/cts-runner ${D}/${CTSDIR}
> +       install -m 0755 ${B}/external/openglcts/modules/glcts ${D}/${CTSDIR}
> +       for dir in gl_cts gles2 gles3 gles31 gles32 ; do
> +               cp -r ${B}/external/openglcts/modules/$dir ${D}/${CTSDIR}/
> +       done
> +       install -m 0755 ${B}/modules/gles3/deqp-gles3 ${D}/${CTSDIR}
> +
> +       rm -r ${D}/${CTSDIR}/*/*.a ${D}/${CTSDIR}/*/cmake_install.cmake ${D}/${CTSDIR}/*/CMakeFiles
> +}
> +
> +FILES_${PN} += "${CTSDIR}"
> --
> 2.27.0
>
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib
  2020-07-13  2:06 ` [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Khem Raj
@ 2020-07-13 14:50   ` Anibal Limon
  2020-07-24 13:21     ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Anibal Limon @ 2020-07-13 14:50 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel, Nicolas Dechesne, Dmitry Baryshkov

[-- Attachment #1: Type: text/plain, Size: 3441 bytes --]

Thanks for noticing, I need to add musl to my tests  :).

Anibal

El dom., 12 de jul. de 2020 21:07, Khem Raj <raj.khem@gmail.com> escribió:

> fails to compile
> musl - https://errors.yoctoproject.org/Errors/Details/420539/
> clang - https://errors.yoctoproject.org/Errors/Details/420544/
>
> On Fri, Jul 10, 2020 at 7:21 AM Anibal Limon <anibal.limon@linaro.org>
> wrote:
> >
> > From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> >
> > Commonly this kind of testing tools are installed in /usr/lib
> > like piglit, remove version.
> >
> > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> > Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
> > ---
> >  .../vk-gl-cts/opengl-es-cts_3.2.6.1.bb        | 45 +++++++++++++++++++
> >  1 file changed, 45 insertions(+)
> >  create mode 100644 meta-oe/recipes-graphics/vk-gl-cts/
> opengl-es-cts_3.2.6.1.bb
> >
> > diff --git a/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
> b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
> > new file mode 100644
> > index 000000000..226f70027
> > --- /dev/null
> > +++ b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
> > @@ -0,0 +1,45 @@
> > +DESCRIPTION = "OpenGL CTS"
> > +LICENSE = "Apache-2.0"
> > +PR = "r0"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
> > +
> > +SRC_URI = "\
> > +       git://
> github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=${BPN}-${PV};name=vk-gl-cts
> <http://github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=$%7BBPN%7D-$%7BPV%7D;name=vk-gl-cts>
> \
> > +       git://
> github.com/google/amber;protocol=https;destsuffix=git/external/amber/src;name=amber;branch=main
> \
> > +       git://
> github.com/KhronosGroup/glslang.git;protocol=https;destsuffix=git/external/glslang/src;name=glslang
> \
> > +       git://
> github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;destsuffix=git/external/spirv-headers/src;name=spirv-headers
> \
> > +       git://
> github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;destsuffix=git/external/spirv-tools/src;name=spirv-tools
> \
> > +"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +SRCREV_FORMAT = "vk-gl-cts"
> > +SRCREV_amber = "d26ee22dd7faab1845a531d410f7ec1db407402a"
> > +SRCREV_glslang = "c538b5d796fb24dd418fdd650c7f76e56bcc3dd8"
> > +SRCREV_spirv-headers = "e4322e3be589e1ddd44afb20ea842a977c1319b8"
> > +SRCREV_spirv-tools = "1eb89172a82b436d8037e8a8c29c80f7e1f7df74"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit pkgconfig cmake
> > +
> > +DEPENDS += "libpng zlib virtual/libgles2 virtual/egl"
> > +
> > +EXTRA_OECMAKE_append = "-DDEQP_TARGET=surfaceless"
> > +
> > +CTSDIR = "${libdir}/${BPN}"
> > +
> > +do_install() {
> > +       install -d ${D}/${CTSDIR}
> > +
> > +       install -m 0755 ${B}/external/openglcts/modules/cts-runner
> ${D}/${CTSDIR}
> > +       install -m 0755 ${B}/external/openglcts/modules/glcts
> ${D}/${CTSDIR}
> > +       for dir in gl_cts gles2 gles3 gles31 gles32 ; do
> > +               cp -r ${B}/external/openglcts/modules/$dir
> ${D}/${CTSDIR}/
> > +       done
> > +       install -m 0755 ${B}/modules/gles3/deqp-gles3 ${D}/${CTSDIR}
> > +
> > +       rm -r ${D}/${CTSDIR}/*/*.a ${D}/${CTSDIR}/*/cmake_install.cmake
> ${D}/${CTSDIR}/*/CMakeFiles
> > +}
> > +
> > +FILES_${PN} += "${CTSDIR}"
> > --
> > 2.27.0
> >
> > 
>

[-- Attachment #2: Type: text/html, Size: 6059 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib
  2020-07-13 14:50   ` Anibal Limon
@ 2020-07-24 13:21     ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2020-07-24 13:21 UTC (permalink / raw)
  To: Anibal Limon
  Cc: Khem Raj, openembeded-devel, Nicolas Dechesne, Dmitry Baryshkov

[-- Attachment #1: Type: text/plain, Size: 3789 bytes --]

It should also probably list opengl in REQUIRED_DISTRO_FEATURES as it
depends on virtual/libgles2 and virtual/egl.

I'll send a patch shortly.

On Mon, Jul 13, 2020 at 4:50 PM Anibal Limon <anibal.limon@linaro.org>
wrote:

> Thanks for noticing, I need to add musl to my tests  :).
>
> Anibal
>
> El dom., 12 de jul. de 2020 21:07, Khem Raj <raj.khem@gmail.com> escribió:
>
>> fails to compile
>> musl - https://errors.yoctoproject.org/Errors/Details/420539/
>> clang - https://errors.yoctoproject.org/Errors/Details/420544/
>>
>> On Fri, Jul 10, 2020 at 7:21 AM Anibal Limon <anibal.limon@linaro.org>
>> wrote:
>> >
>> > From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>> >
>> > Commonly this kind of testing tools are installed in /usr/lib
>> > like piglit, remove version.
>> >
>> > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>> > Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
>> > ---
>> >  .../vk-gl-cts/opengl-es-cts_3.2.6.1.bb        | 45 +++++++++++++++++++
>> >  1 file changed, 45 insertions(+)
>> >  create mode 100644 meta-oe/recipes-graphics/vk-gl-cts/
>> opengl-es-cts_3.2.6.1.bb
>> >
>> > diff --git a/meta-oe/recipes-graphics/vk-gl-cts/
>> opengl-es-cts_3.2.6.1.bb b/meta-oe/recipes-graphics/vk-gl-cts/
>> opengl-es-cts_3.2.6.1.bb
>> > new file mode 100644
>> > index 000000000..226f70027
>> > --- /dev/null
>> > +++ b/meta-oe/recipes-graphics/vk-gl-cts/opengl-es-cts_3.2.6.1.bb
>> > @@ -0,0 +1,45 @@
>> > +DESCRIPTION = "OpenGL CTS"
>> > +LICENSE = "Apache-2.0"
>> > +PR = "r0"
>> > +LIC_FILES_CHKSUM =
>> "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
>> > +
>> > +SRC_URI = "\
>> > +       git://
>> github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=${BPN}-${PV};name=vk-gl-cts
>> <http://github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;tag=$%7BBPN%7D-$%7BPV%7D;name=vk-gl-cts>
>> \
>> > +       git://
>> github.com/google/amber;protocol=https;destsuffix=git/external/amber/src;name=amber;branch=main
>> \
>> > +       git://
>> github.com/KhronosGroup/glslang.git;protocol=https;destsuffix=git/external/glslang/src;name=glslang
>> \
>> > +       git://
>> github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;destsuffix=git/external/spirv-headers/src;name=spirv-headers
>> \
>> > +       git://
>> github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;destsuffix=git/external/spirv-tools/src;name=spirv-tools
>> \
>> > +"
>> > +
>> > +S = "${WORKDIR}/git"
>> > +
>> > +SRCREV_FORMAT = "vk-gl-cts"
>> > +SRCREV_amber = "d26ee22dd7faab1845a531d410f7ec1db407402a"
>> > +SRCREV_glslang = "c538b5d796fb24dd418fdd650c7f76e56bcc3dd8"
>> > +SRCREV_spirv-headers = "e4322e3be589e1ddd44afb20ea842a977c1319b8"
>> > +SRCREV_spirv-tools = "1eb89172a82b436d8037e8a8c29c80f7e1f7df74"
>> > +
>> > +S = "${WORKDIR}/git"
>> > +
>> > +inherit pkgconfig cmake
>> > +
>> > +DEPENDS += "libpng zlib virtual/libgles2 virtual/egl"
>> > +
>> > +EXTRA_OECMAKE_append = "-DDEQP_TARGET=surfaceless"
>> > +
>> > +CTSDIR = "${libdir}/${BPN}"
>> > +
>> > +do_install() {
>> > +       install -d ${D}/${CTSDIR}
>> > +
>> > +       install -m 0755 ${B}/external/openglcts/modules/cts-runner
>> ${D}/${CTSDIR}
>> > +       install -m 0755 ${B}/external/openglcts/modules/glcts
>> ${D}/${CTSDIR}
>> > +       for dir in gl_cts gles2 gles3 gles31 gles32 ; do
>> > +               cp -r ${B}/external/openglcts/modules/$dir
>> ${D}/${CTSDIR}/
>> > +       done
>> > +       install -m 0755 ${B}/modules/gles3/deqp-gles3 ${D}/${CTSDIR}
>> > +
>> > +       rm -r ${D}/${CTSDIR}/*/*.a ${D}/${CTSDIR}/*/cmake_install.cmake
>> ${D}/${CTSDIR}/*/CMakeFiles
>> > +}
>> > +
>> > +FILES_${PN} += "${CTSDIR}"
>> > --
>> > 2.27.0
>> >
>> >
>>
> 
>

[-- Attachment #2: Type: text/html, Size: 6634 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-07-24 13:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10 14:21 [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Anibal Limon
2020-07-10 14:21 ` [PATCH 2/2] recipes-graphics: Add parallel-deqp-runner recipe Anibal Limon
2020-07-13  2:06 ` [oe] [PATCH 1/2] recipes-graphics: Add opengl-es-cts install in /usr/lib Khem Raj
2020-07-13 14:50   ` Anibal Limon
2020-07-24 13:21     ` Martin Jansa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.