* [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance
@ 2025-12-05 9:14 srinuvasan.a via isar-users
2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
2025-12-08 13:21 ` Zhihang Wei
0 siblings, 2 replies; 5+ messages in thread
From: srinuvasan.a via isar-users @ 2025-12-05 9:14 UTC (permalink / raw)
To: isar-users; +Cc: jan.kiszka, srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
Fixed a typo that caused the optee-os class to not be inherited as expected.
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
meta/recipes-bsp/optee-os/optee-os-custom.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-bsp/optee-os/optee-os-custom.inc b/meta/recipes-bsp/optee-os/optee-os-custom.inc
index 1f4ebf7e..b386047d 100644
--- a/meta/recipes-bsp/optee-os/optee-os-custom.inc
+++ b/meta/recipes-bsp/optee-os/optee-os-custom.inc
@@ -5,7 +5,7 @@
#
# SPDX-License-Identifier: MIT
-inherir optee-os
+inherit optee-os
do_warn_custom_inc() {
bbwarn "Please migrate from \"require recipes-bsp/optee-os/optee-os-custom.inc\" to \"inherit optee-os\""
--
2.39.5
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20251205091419.6733-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance
2025-12-05 9:14 [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance srinuvasan.a via isar-users
@ 2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
2025-12-05 10:47 ` 'Jan Kiszka' via isar-users
2025-12-05 10:51 ` Srinuvasan Arjunan
2025-12-08 13:21 ` Zhihang Wei
1 sibling, 2 replies; 5+ messages in thread
From: 'Jan Kiszka' via isar-users @ 2025-12-05 10:40 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On 05.12.25 10:14, srinuvasan.a@siemens.com wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> Fixed a typo that caused the optee-os class to not be inherited as expected.
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> meta/recipes-bsp/optee-os/optee-os-custom.inc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-bsp/optee-os/optee-os-custom.inc b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> index 1f4ebf7e..b386047d 100644
> --- a/meta/recipes-bsp/optee-os/optee-os-custom.inc
> +++ b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> @@ -5,7 +5,7 @@
> #
> # SPDX-License-Identifier: MIT
>
> -inherir optee-os
> +inherit optee-os
>
> do_warn_custom_inc() {
> bbwarn "Please migrate from \"require recipes-bsp/optee-os/optee-os-custom.inc\" to \"inherit optee-os\""
Oops - good catch. A bit unexpected that this was not caught by the
bitbake parser, though. How did you notice?
Jan
--
Siemens AG, Foundational Technologies
Linux Expert Center
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/dcf8a2a8-9c0c-4872-8781-376560b965e9%40siemens.com.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance
2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
@ 2025-12-05 10:47 ` 'Jan Kiszka' via isar-users
2025-12-05 10:51 ` Srinuvasan Arjunan
1 sibling, 0 replies; 5+ messages in thread
From: 'Jan Kiszka' via isar-users @ 2025-12-05 10:47 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On 05.12.25 11:40, Jan Kiszka wrote:
> On 05.12.25 10:14, srinuvasan.a@siemens.com wrote:
>> From: srinuvasan <srinuvasan.a@siemens.com>
>>
>> Fixed a typo that caused the optee-os class to not be inherited as expected.
>>
>> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
>> ---
>> meta/recipes-bsp/optee-os/optee-os-custom.inc | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-bsp/optee-os/optee-os-custom.inc b/meta/recipes-bsp/optee-os/optee-os-custom.inc
>> index 1f4ebf7e..b386047d 100644
>> --- a/meta/recipes-bsp/optee-os/optee-os-custom.inc
>> +++ b/meta/recipes-bsp/optee-os/optee-os-custom.inc
>> @@ -5,7 +5,7 @@
>> #
>> # SPDX-License-Identifier: MIT
>>
>> -inherir optee-os
>> +inherit optee-os
>>
>> do_warn_custom_inc() {
>> bbwarn "Please migrate from \"require recipes-bsp/optee-os/optee-os-custom.inc\" to \"inherit optee-os\""
>
> Oops - good catch. A bit unexpected that this was not caught by the
> bitbake parser, though. How did you notice?
>
Ah, that's the compat include - now it's clear :)
Jan
--
Siemens AG, Foundational Technologies
Linux Expert Center
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/74d9a5cb-21ca-4100-bab7-be590c5be87d%40siemens.com.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance
2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
2025-12-05 10:47 ` 'Jan Kiszka' via isar-users
@ 2025-12-05 10:51 ` Srinuvasan Arjunan
1 sibling, 0 replies; 5+ messages in thread
From: Srinuvasan Arjunan @ 2025-12-05 10:51 UTC (permalink / raw)
To: Jan Kiszka; +Cc: srinuvasan.a, isar-users
[-- Attachment #1: Type: text/plain, Size: 2126 bytes --]
On Fri, Dec 5, 2025 at 4:10 PM 'Jan Kiszka' via isar-users <
isar-users@googlegroups.com> wrote:
> On 05.12.25 10:14, srinuvasan.a@siemens.com wrote:
> > From: srinuvasan <srinuvasan.a@siemens.com>
> >
> > Fixed a typo that caused the optee-os class to not be inherited as
> expected.
> >
> > Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> > ---
> > meta/recipes-bsp/optee-os/optee-os-custom.inc | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta/recipes-bsp/optee-os/optee-os-custom.inc
> b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> > index 1f4ebf7e..b386047d 100644
> > --- a/meta/recipes-bsp/optee-os/optee-os-custom.inc
> > +++ b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> > @@ -5,7 +5,7 @@
> > #
> > # SPDX-License-Identifier: MIT
> >
> > -inherir optee-os
> > +inherit optee-os
> >
> > do_warn_custom_inc() {
> > bbwarn "Please migrate from \"require
> recipes-bsp/optee-os/optee-os-custom.inc\" to \"inherit optee-os\""
>
> Oops - good catch. A bit unexpected that this was not caught by the
> bitbake parser, though. How did you notice?
>
> Jan
>
> --
> Siemens AG, Foundational Technologies
> Linux Expert Center
>
Hi Jan,
I was checking the latest changes in next, and while going through the
commits, I noticed this.
Many thanks,
Srinu
>
> --
> You received this message because you are subscribed to the Google Groups
> "isar-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to isar-users+unsubscribe@googlegroups.com.
> To view this discussion visit
> https://groups.google.com/d/msgid/isar-users/dcf8a2a8-9c0c-4872-8781-376560b965e9%40siemens.com
> .
>
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/CAB2Z2nNWYEkL0yRPdfzTQKKJ3QtSJYh86z5Ken1FyagnOAttxg%40mail.gmail.com.
[-- Attachment #2: Type: text/html, Size: 3542 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance
2025-12-05 9:14 [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance srinuvasan.a via isar-users
2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
@ 2025-12-08 13:21 ` Zhihang Wei
1 sibling, 0 replies; 5+ messages in thread
From: Zhihang Wei @ 2025-12-08 13:21 UTC (permalink / raw)
To: srinuvasan.a, isar-users; +Cc: jan.kiszka
Applied to next, thanks.
Zhihang
On 12/5/25 10:14, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> Fixed a typo that caused the optee-os class to not be inherited as expected.
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> meta/recipes-bsp/optee-os/optee-os-custom.inc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-bsp/optee-os/optee-os-custom.inc b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> index 1f4ebf7e..b386047d 100644
> --- a/meta/recipes-bsp/optee-os/optee-os-custom.inc
> +++ b/meta/recipes-bsp/optee-os/optee-os-custom.inc
> @@ -5,7 +5,7 @@
> #
> # SPDX-License-Identifier: MIT
>
> -inherir optee-os
> +inherit optee-os
>
> do_warn_custom_inc() {
> bbwarn "Please migrate from \"require recipes-bsp/optee-os/optee-os-custom.inc\" to \"inherit optee-os\""
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/d8247442-9f1e-430d-a5ee-e88cb6a372f7%40ilbers.de.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-12-08 13:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-05 9:14 [PATCH] meta/recipes-bsp/optee-os: correct typo in class inheritance srinuvasan.a via isar-users
2025-12-05 10:40 ` 'Jan Kiszka' via isar-users
2025-12-05 10:47 ` 'Jan Kiszka' via isar-users
2025-12-05 10:51 ` Srinuvasan Arjunan
2025-12-08 13:21 ` Zhihang Wei
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox