* [meta-arago][master][PATCH 0/2] Add libsdl2 test support
@ 2026-03-17 18:57 a-christidis
2026-03-17 18:57 ` [meta-arago][master][PATCH 1/2] libsdl2: Add tests package a-christidis
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: a-christidis @ 2026-03-17 18:57 UTC (permalink / raw)
To: reatmon, denys; +Cc: meta-arago
From: Antonios Christidis <a-christidis@ti.com>
Build and package libsdl2 tests.
Working on merging similar changes to oe-core master, but in the
meantime the tests are needed.
Kind Regards,
Antonios
Antonios Christidis (2):
libsdl2: Add tests package
ti-test: Add libsdl2-tests to packagegroup
meta-arago-test/recipes-core/packagegroups/ti-test.bb | 1 +
meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
3 files changed, 11 insertions(+)
create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 18:57 [meta-arago][master][PATCH 0/2] Add libsdl2 test support a-christidis
@ 2026-03-17 18:57 ` a-christidis
2026-03-17 19:14 ` Denys Dmytriyenko
2026-03-17 18:57 ` [meta-arago][master][PATCH 2/2] ti-test: Add libsdl2-tests to packagegroup a-christidis
2026-03-17 19:03 ` [meta-arago][master][PATCH 0/2] Add libsdl2 test support PRC Automation
2 siblings, 1 reply; 9+ messages in thread
From: a-christidis @ 2026-03-17 18:57 UTC (permalink / raw)
To: reatmon, denys; +Cc: meta-arago
From: Antonios Christidis <a-christidis@ti.com>
The software provides tests, configure cmake to build and install them.
Package the tests in -tests package.
Signed-off-by: Antonios Christidis <a-christidis@ti.com>
---
meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
2 files changed, 10 insertions(+)
create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
new file mode 100644
index 00000000..f33ff909
--- /dev/null
+++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
@@ -0,0 +1,6 @@
+EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
+ -DSDL_INSTALL_TESTS=ON \
+ "
+PACKAGE_BEFORE_PN = "${PN}-tests"
+FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
+FILES:${PN}-tests:class-nativesdk += "${libexecdir} ${datadir}/installed-tests/SDL2"
diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
new file mode 100644
index 00000000..385aa801
--- /dev/null
+++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
@@ -0,0 +1,4 @@
+LIBSDL2_TI = ""
+LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
+
+require ${LIBSDL2_TI}
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [meta-arago][master][PATCH 2/2] ti-test: Add libsdl2-tests to packagegroup
2026-03-17 18:57 [meta-arago][master][PATCH 0/2] Add libsdl2 test support a-christidis
2026-03-17 18:57 ` [meta-arago][master][PATCH 1/2] libsdl2: Add tests package a-christidis
@ 2026-03-17 18:57 ` a-christidis
2026-03-17 19:03 ` [meta-arago][master][PATCH 0/2] Add libsdl2 test support PRC Automation
2 siblings, 0 replies; 9+ messages in thread
From: a-christidis @ 2026-03-17 18:57 UTC (permalink / raw)
To: reatmon, denys; +Cc: meta-arago
From: Antonios Christidis <a-christidis@ti.com>
Add libsdl2-tests to the ti-test packagegroup.
Signed-off-by: Antonios Christidis <a-christidis@ti.com>
---
meta-arago-test/recipes-core/packagegroups/ti-test.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta-arago-test/recipes-core/packagegroups/ti-test.bb b/meta-arago-test/recipes-core/packagegroups/ti-test.bb
index b09ffcd9..df8f1323 100644
--- a/meta-arago-test/recipes-core/packagegroups/ti-test.bb
+++ b/meta-arago-test/recipes-core/packagegroups/ti-test.bb
@@ -69,6 +69,7 @@ TI_TEST_EXTRAS_OPENCL = " \
"
TI_TEST_EXTRAS = " \
+ libsdl2-tests \
python3-pillow \
pytesseract \
python3-numpy \
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 0/2] Add libsdl2 test support
2026-03-17 18:57 [meta-arago][master][PATCH 0/2] Add libsdl2 test support a-christidis
2026-03-17 18:57 ` [meta-arago][master][PATCH 1/2] libsdl2: Add tests package a-christidis
2026-03-17 18:57 ` [meta-arago][master][PATCH 2/2] ti-test: Add libsdl2-tests to packagegroup a-christidis
@ 2026-03-17 19:03 ` PRC Automation
2 siblings, 0 replies; 9+ messages in thread
From: PRC Automation @ 2026-03-17 19:03 UTC (permalink / raw)
To: a-christidis; +Cc: reatmon, denys, meta-arago
meta-arago / na / 20260317185724.34717-1-a-christidis
PRC Results: FAIL
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed
=========================================================
apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH 0/2] Add libsdl2 test support
- Submitter: From: <a-christidis@ti.com>
From: Antonios Christidis <a-christidis@ti.com>
- Date: Date: Tue, 17 Mar 2026 13:57:22 -0500
- Num Patches: 2
- Mailing List (public inbox) Commit SHA: 32408606440034851a854ebd4514fcaec8feccab
Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Thorsten Lannynd <t-lannynd@ti.com>
- Commit Subject: ti-test: Add request and websocket-client to packagegroup
- Commit SHA: 64d6190f700d54addcd17687b7428a64c2bbb0fb
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: PASS
=========================================================
master
=====================
PASS
=========================================================
yocto-check-layers: FAIL
=========================================================
master - FAIL
=====================
ERROR: Nothing PROVIDES 'gstreamer1.0-vaapi' (but <build-dir>/sources/meta-openembedded/meta-networking/recipes-support/spice/spice-gtk_0.42.bb DEPENDS on or otherwise requires it). Close matches:
ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 18:57 ` [meta-arago][master][PATCH 1/2] libsdl2: Add tests package a-christidis
@ 2026-03-17 19:14 ` Denys Dmytriyenko
2026-03-17 19:27 ` Ryan Eatmon
2026-03-17 19:29 ` Antonios Christidis
0 siblings, 2 replies; 9+ messages in thread
From: Denys Dmytriyenko @ 2026-03-17 19:14 UTC (permalink / raw)
To: a-christidis; +Cc: reatmon, denys, meta-arago
On Tue, Mar 17, 2026 at 01:57:23PM -0500, Antonios Christidis via lists.yoctoproject.org wrote:
> From: Antonios Christidis <a-christidis@ti.com>
>
> The software provides tests, configure cmake to build and install them.
> Package the tests in -tests package.
This might be useful to get it upstreamed as a new PACKAGECONFIG to OE-Core...
> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
> ---
> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
> 2 files changed, 10 insertions(+)
> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>
> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> new file mode 100644
> index 00000000..f33ff909
> --- /dev/null
> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> @@ -0,0 +1,6 @@
> +EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
> + -DSDL_INSTALL_TESTS=ON \
> + "
There's no reason for :append here, while += could work just fine.
> +PACKAGE_BEFORE_PN = "${PN}-tests"
> +FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
> +FILES:${PN}-tests:class-nativesdk += "${libexecdir} ${datadir}/installed-tests/SDL2"
If the values for these 2 are identical, why do you need to set
class-nativesdk variant explixitly?
> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
> new file mode 100644
> index 00000000..385aa801
> --- /dev/null
> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
> @@ -0,0 +1,4 @@
> +LIBSDL2_TI = ""
> +LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
> +
> +require ${LIBSDL2_TI}
> --
> 2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 19:14 ` Denys Dmytriyenko
@ 2026-03-17 19:27 ` Ryan Eatmon
2026-03-17 19:29 ` Antonios Christidis
1 sibling, 0 replies; 9+ messages in thread
From: Ryan Eatmon @ 2026-03-17 19:27 UTC (permalink / raw)
To: Denys Dmytriyenko, a-christidis; +Cc: denys, meta-arago
On 3/17/2026 2:14 PM, Denys Dmytriyenko wrote:
> On Tue, Mar 17, 2026 at 01:57:23PM -0500, Antonios Christidis via lists.yoctoproject.org wrote:
>> From: Antonios Christidis <a-christidis@ti.com>
>>
>> The software provides tests, configure cmake to build and install them.
>> Package the tests in -tests package.
>
> This might be useful to get it upstreamed as a new PACKAGECONFIG to OE-Core...
Good idea.
>
>> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
>> ---
>> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
>> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
>> 2 files changed, 10 insertions(+)
>> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>
>> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> new file mode 100644
>> index 00000000..f33ff909
>> --- /dev/null
>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> @@ -0,0 +1,6 @@
>> +EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
>> + -DSDL_INSTALL_TESTS=ON \
>> + "
>
> There's no reason for :append here, while += could work just fine.
>
>
>> +PACKAGE_BEFORE_PN = "${PN}-tests"
>
>> +FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
>> +FILES:${PN}-tests:class-nativesdk += "${libexecdir} ${datadir}/installed-tests/SDL2"
>
> If the values for these 2 are identical, why do you need to set
> class-nativesdk variant explixitly?
>
>
>> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>> new file mode 100644
>> index 00000000..385aa801
>> --- /dev/null
>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>> @@ -0,0 +1,4 @@
>> +LIBSDL2_TI = ""
>> +LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
>> +
>> +require ${LIBSDL2_TI}
>> --
>> 2.34.1
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 19:14 ` Denys Dmytriyenko
2026-03-17 19:27 ` Ryan Eatmon
@ 2026-03-17 19:29 ` Antonios Christidis
2026-03-17 19:56 ` Denys Dmytriyenko
2026-03-17 19:58 ` Ryan Eatmon
1 sibling, 2 replies; 9+ messages in thread
From: Antonios Christidis @ 2026-03-17 19:29 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: reatmon, denys, meta-arago
On 3/17/26 2:14 PM, Denys Dmytriyenko wrote:
> On Tue, Mar 17, 2026 at 01:57:23PM -0500, Antonios Christidis via lists.yoctoproject.org wrote:
>> From: Antonios Christidis <a-christidis@ti.com>
>>
>> The software provides tests, configure cmake to build and install them.
>> Package the tests in -tests package.
> This might be useful to get it upstreamed as a new PACKAGECONFIG to OE-Core...
Thank you for the idea, I'll keep that in mind.
>
>> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
>> ---
>> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
>> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
>> 2 files changed, 10 insertions(+)
>> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>
>> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> new file mode 100644
>> index 00000000..f33ff909
>> --- /dev/null
>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>> @@ -0,0 +1,6 @@
>> +EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
>> + -DSDL_INSTALL_TESTS=ON \
>> + "
> There's no reason for :append here, while += could work just fine.
Do you want me to send a v2 for this ?
>> +PACKAGE_BEFORE_PN = "${PN}-tests"
>> +FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
>> +FILES:${PN}-tests:class-nativesdk += "${libexecdir} ${datadir}/installed-tests/SDL2"
> If the values for these 2 are identical, why do you need to set
> class-nativesdk variant explixitly?
Ryan observed an issue when class-nativesdk variant wasn't set
explicitly on scarthgap branch.
Link:
https://patchwork.yoctoproject.org/project/arago/patch/20250917220826.2078836-2-a-christidis@ti.com/#31054
>
>> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>> new file mode 100644
>> index 00000000..385aa801
>> --- /dev/null
>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>> @@ -0,0 +1,4 @@
>> +LIBSDL2_TI = ""
>> +LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
>> +
>> +require ${LIBSDL2_TI}
>> --
>> 2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 19:29 ` Antonios Christidis
@ 2026-03-17 19:56 ` Denys Dmytriyenko
2026-03-17 19:58 ` Ryan Eatmon
1 sibling, 0 replies; 9+ messages in thread
From: Denys Dmytriyenko @ 2026-03-17 19:56 UTC (permalink / raw)
To: Antonios Christidis; +Cc: reatmon, denys, meta-arago
On Tue, Mar 17, 2026 at 02:29:16PM -0500, Antonios Christidis wrote:
>
> On 3/17/26 2:14 PM, Denys Dmytriyenko wrote:
> >On Tue, Mar 17, 2026 at 01:57:23PM -0500, Antonios Christidis via lists.yoctoproject.org wrote:
> >>From: Antonios Christidis <a-christidis@ti.com>
> >>
> >>The software provides tests, configure cmake to build and install them.
> >>Package the tests in -tests package.
> >This might be useful to get it upstreamed as a new PACKAGECONFIG to OE-Core...
>
> Thank you for the idea, I'll keep that in mind.
>
> >
> >>Signed-off-by: Antonios Christidis <a-christidis@ti.com>
> >>---
> >> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
> >> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
> >> 2 files changed, 10 insertions(+)
> >> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> >> create mode 100644 meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
> >>
> >>diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> >>new file mode 100644
> >>index 00000000..f33ff909
> >>--- /dev/null
> >>+++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
> >>@@ -0,0 +1,6 @@
> >>+EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
> >>+ -DSDL_INSTALL_TESTS=ON \
> >>+ "
> >There's no reason for :append here, while += could work just fine.
> Do you want me to send a v2 for this ?
> >>+PACKAGE_BEFORE_PN = "${PN}-tests"
> >>+FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
> >>+FILES:${PN}-tests:class-nativesdk += "${libexecdir} ${datadir}/installed-tests/SDL2"
> >If the values for these 2 are identical, why do you need to set
> >class-nativesdk variant explixitly?
>
> Ryan observed an issue when class-nativesdk variant wasn't set
> explicitly on scarthgap branch.
>
> Link: https://patchwork.yoctoproject.org/project/arago/patch/20250917220826.2078836-2-a-christidis@ti.com/#31054
Ah, right, we had that discussion back in September... Still not sure why it
was failing.
> >>diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
> >>new file mode 100644
> >>index 00000000..385aa801
> >>--- /dev/null
> >>+++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
> >>@@ -0,0 +1,4 @@
> >>+LIBSDL2_TI = ""
> >>+LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
> >>+
> >>+require ${LIBSDL2_TI}
> >>--
> >>2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-arago][master][PATCH 1/2] libsdl2: Add tests package
2026-03-17 19:29 ` Antonios Christidis
2026-03-17 19:56 ` Denys Dmytriyenko
@ 2026-03-17 19:58 ` Ryan Eatmon
1 sibling, 0 replies; 9+ messages in thread
From: Ryan Eatmon @ 2026-03-17 19:58 UTC (permalink / raw)
To: Antonios Christidis, Denys Dmytriyenko; +Cc: denys, meta-arago
On 3/17/2026 2:29 PM, Antonios Christidis wrote:
>
> On 3/17/26 2:14 PM, Denys Dmytriyenko wrote:
>> On Tue, Mar 17, 2026 at 01:57:23PM -0500, Antonios Christidis via
>> lists.yoctoproject.org wrote:
>>> From: Antonios Christidis <a-christidis@ti.com>
>>>
>>> The software provides tests, configure cmake to build and install them.
>>> Package the tests in -tests package.
>> This might be useful to get it upstreamed as a new PACKAGECONFIG to
>> OE-Core...
>
> Thank you for the idea, I'll keep that in mind.
>
>>
>>> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
>>> ---
>>> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc | 6 ++++++
>>> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend | 4 ++++
>>> 2 files changed, 10 insertions(+)
>>> create mode 100644
>>> meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>>> create mode 100644
>>> meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>>
>>> diff --git a/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>>> b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>>> new file mode 100644
>>> index 00000000..f33ff909
>>> --- /dev/null
>>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2-ti.inc
>>> @@ -0,0 +1,6 @@
>>> +EXTRA_OECMAKE:append = " -DSDL_TESTS=ON \
>>> + -DSDL_INSTALL_TESTS=ON \
>>> + "
>> There's no reason for :append here, while += could work just fine.
> Do you want me to send a v2 for this ?
Yes, please.
>>> +PACKAGE_BEFORE_PN = "${PN}-tests"
>>> +FILES:${PN}-tests += "${libexecdir} ${datadir}/installed-tests/SDL2"
>>> +FILES:${PN}-tests:class-nativesdk += "${libexecdir}
>>> ${datadir}/installed-tests/SDL2"
>> If the values for these 2 are identical, why do you need to set
>> class-nativesdk variant explixitly?
>
> Ryan observed an issue when class-nativesdk variant wasn't set
> explicitly on scarthgap branch.
>
> Link:
> https://patchwork.yoctoproject.org/project/arago/patch/20250917220826.2078836-2-a-christidis@ti.com/#31054
>
>>
>>> diff --git
>>> a/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>> b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>> new file mode 100644
>>> index 00000000..385aa801
>>> --- /dev/null
>>> +++ b/meta-arago-test/recipes-graphics/libsdl2/libsdl2_%.bbappend
>>> @@ -0,0 +1,4 @@
>>> +LIBSDL2_TI = ""
>>> +LIBSDL2_TI:ti-soc = "libsdl2-ti.inc"
>>> +
>>> +require ${LIBSDL2_TI}
>>> --
>>> 2.34.1
--
Ryan Eatmon reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc. - LCPD - MGTS
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-03-17 19:58 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 18:57 [meta-arago][master][PATCH 0/2] Add libsdl2 test support a-christidis
2026-03-17 18:57 ` [meta-arago][master][PATCH 1/2] libsdl2: Add tests package a-christidis
2026-03-17 19:14 ` Denys Dmytriyenko
2026-03-17 19:27 ` Ryan Eatmon
2026-03-17 19:29 ` Antonios Christidis
2026-03-17 19:56 ` Denys Dmytriyenko
2026-03-17 19:58 ` Ryan Eatmon
2026-03-17 18:57 ` [meta-arago][master][PATCH 2/2] ti-test: Add libsdl2-tests to packagegroup a-christidis
2026-03-17 19:03 ` [meta-arago][master][PATCH 0/2] Add libsdl2 test support PRC Automation
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.