* [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
@ 2025-09-26 16:48 AshishKumar Mishra
2025-09-26 16:48 ` [kirkstone][PATCH] 2/2] p11-kit: " AshishKumar Mishra
2025-10-01 13:25 ` [kirkstone][PATCH] 1/2] systemd: " Gyorgy Sarvari
0 siblings, 2 replies; 9+ messages in thread
From: AshishKumar Mishra @ 2025-09-26 16:48 UTC (permalink / raw)
To: openembedded-devel
Cc: skandigraun, AshishKumar Mishra, Philip Lorenz,
Mathieu Dubois-Briand, Richard Purdie
From: AshishKumar Mishra <emailaddress.ashish@gmail.com>
Do not build translations when NLS is disabled.
(From OE-Core rev: 83795ef6c3fa12a863cd20b7ec1a2607606987b6)
This change corresponds to upstream d848b454e64ffbd642590b4bbc378619e1547ad3
from master .
Since the systemd version are different between master & kirkstone
applied the patch manually
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
---
meta/recipes-core/systemd/systemd_250.14.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-core/systemd/systemd_250.14.bb b/meta/recipes-core/systemd/systemd_250.14.bb
index 66d20a46fd..087c0035eb 100644
--- a/meta/recipes-core/systemd/systemd_250.14.bb
+++ b/meta/recipes-core/systemd/systemd_250.14.bb
@@ -235,6 +235,7 @@ EXTRA_OEMESON += "-Dnobody-user=nobody \
-Dmode=release \
-Dsystem-alloc-uid-min=101 \
-Dsystem-uid-max=999 \
+ -Dtranslations=${@'false' if d.getVar('USE_NLS') == 'no' else 'true'} \
-Dsystem-alloc-gid-min=101 \
-Dsystem-gid-max=999 \
"
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [kirkstone][PATCH] 2/2] p11-kit: backport fix for handle USE_NLS from master
2025-09-26 16:48 [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master AshishKumar Mishra
@ 2025-09-26 16:48 ` AshishKumar Mishra
2025-09-29 4:50 ` Ashish Mishra
2025-10-01 13:26 ` Gyorgy Sarvari
2025-10-01 13:25 ` [kirkstone][PATCH] 1/2] systemd: " Gyorgy Sarvari
1 sibling, 2 replies; 9+ messages in thread
From: AshishKumar Mishra @ 2025-09-26 16:48 UTC (permalink / raw)
To: openembedded-devel
Cc: skandigraun, AshishKumar Mishra, Philip Lorenz,
Mathieu Dubois-Briand, Richard Purdie
From: AshishKumar Mishra <emailaddress.ashish@gmail.com>
Disable NLS in the build when USE_NLS is off.
(From OE-Core rev: b94798ecd535956ef4565663710ea9a701ff21ed)
This change corresponds to upstream eeb3974472429a99a724f324dc8a63e435741f68
from master .
Since the p11-kit version are different between master & kirkstone
applied the patch manually
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
---
meta/recipes-support/p11-kit/p11-kit_0.24.1.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb b/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
index 72b446204a..62aca0cfee 100644
--- a/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
+++ b/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
@@ -18,6 +18,7 @@ PACKAGECONFIG ??= ""
PACKAGECONFIG[manpages] = "-Dman=true,-Dman=false,libxslt-native"
PACKAGECONFIG[trust-paths] = "-Dtrust_paths=/etc/ssl/certs/ca-certificates.crt,,,ca-certificates"
+EXTRA_OEMESON:append = " -Dnls=${@'false' if d.getVar('USE_NLS') == 'no' else 'true'}"
GTKDOC_MESON_OPTION = 'gtk_doc'
FILES:${PN} += " \
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 2/2] p11-kit: backport fix for handle USE_NLS from master
2025-09-26 16:48 ` [kirkstone][PATCH] 2/2] p11-kit: " AshishKumar Mishra
@ 2025-09-29 4:50 ` Ashish Mishra
2025-10-01 13:26 ` Gyorgy Sarvari
1 sibling, 0 replies; 9+ messages in thread
From: Ashish Mishra @ 2025-09-29 4:50 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 246 bytes --]
@ Gyorgy Sarvari :
Good Morning .
Please do consider this patch for merge in Kirkstone
If any suggestion / feedback on this , feel free to share .
Will work on it accordingly
Have shared the 2 patch changes for same
Thanks ,
Ashish
[-- Attachment #2: Type: text/html, Size: 4194 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
2025-09-26 16:48 [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master AshishKumar Mishra
2025-09-26 16:48 ` [kirkstone][PATCH] 2/2] p11-kit: " AshishKumar Mishra
@ 2025-10-01 13:25 ` Gyorgy Sarvari
2025-10-03 4:59 ` Ashish Mishra
1 sibling, 1 reply; 9+ messages in thread
From: Gyorgy Sarvari @ 2025-10-01 13:25 UTC (permalink / raw)
To: AshishKumar Mishra, openembedded-devel
Note that systemd is in oe-core, and I am not able to apply it - the
correct mailing list for this would be
openembedded-core@lists.openembedded.org
On 9/26/25 18:48, AshishKumar Mishra wrote:
> From: AshishKumar Mishra <emailaddress.ashish@gmail.com>
>
> Do not build translations when NLS is disabled.
> (From OE-Core rev: 83795ef6c3fa12a863cd20b7ec1a2607606987b6)
>
> This change corresponds to upstream d848b454e64ffbd642590b4bbc378619e1547ad3
> from master .
> Since the systemd version are different between master & kirkstone
> applied the patch manually
>
> Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
> ---
> meta/recipes-core/systemd/systemd_250.14.bb | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-core/systemd/systemd_250.14.bb b/meta/recipes-core/systemd/systemd_250.14.bb
> index 66d20a46fd..087c0035eb 100644
> --- a/meta/recipes-core/systemd/systemd_250.14.bb
> +++ b/meta/recipes-core/systemd/systemd_250.14.bb
> @@ -235,6 +235,7 @@ EXTRA_OEMESON += "-Dnobody-user=nobody \
> -Dmode=release \
> -Dsystem-alloc-uid-min=101 \
> -Dsystem-uid-max=999 \
> + -Dtranslations=${@'false' if d.getVar('USE_NLS') == 'no' else 'true'} \
> -Dsystem-alloc-gid-min=101 \
> -Dsystem-gid-max=999 \
> "
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 2/2] p11-kit: backport fix for handle USE_NLS from master
2025-09-26 16:48 ` [kirkstone][PATCH] 2/2] p11-kit: " AshishKumar Mishra
2025-09-29 4:50 ` Ashish Mishra
@ 2025-10-01 13:26 ` Gyorgy Sarvari
1 sibling, 0 replies; 9+ messages in thread
From: Gyorgy Sarvari @ 2025-10-01 13:26 UTC (permalink / raw)
To: AshishKumar Mishra, openembedded-devel
Same as for systemd - this should go to the other ML.
On 9/26/25 18:48, AshishKumar Mishra wrote:
> From: AshishKumar Mishra <emailaddress.ashish@gmail.com>
>
> Disable NLS in the build when USE_NLS is off.
>
> (From OE-Core rev: b94798ecd535956ef4565663710ea9a701ff21ed)
>
> This change corresponds to upstream eeb3974472429a99a724f324dc8a63e435741f68
> from master .
> Since the p11-kit version are different between master & kirkstone
> applied the patch manually
>
> Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
> ---
> meta/recipes-support/p11-kit/p11-kit_0.24.1.bb | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb b/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
> index 72b446204a..62aca0cfee 100644
> --- a/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
> +++ b/meta/recipes-support/p11-kit/p11-kit_0.24.1.bb
> @@ -18,6 +18,7 @@ PACKAGECONFIG ??= ""
> PACKAGECONFIG[manpages] = "-Dman=true,-Dman=false,libxslt-native"
> PACKAGECONFIG[trust-paths] = "-Dtrust_paths=/etc/ssl/certs/ca-certificates.crt,,,ca-certificates"
>
> +EXTRA_OEMESON:append = " -Dnls=${@'false' if d.getVar('USE_NLS') == 'no' else 'true'}"
> GTKDOC_MESON_OPTION = 'gtk_doc'
>
> FILES:${PN} += " \
^ permalink raw reply [flat|nested] 9+ messages in thread
* [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
@ 2025-10-03 4:57 AshishKumar Mishra
2025-10-06 5:33 ` Ashish Mishra
0 siblings, 1 reply; 9+ messages in thread
From: AshishKumar Mishra @ 2025-10-03 4:57 UTC (permalink / raw)
To: openembedded-core
Cc: skandigraun, AshishKumar Mishra, Philip Lorenz,
Mathieu Dubois-Briand, Richard Purdie
From: AshishKumar Mishra <emailaddress.ashish@gmail.com>
Do not build translations when NLS is disabled.
(From OE-Core rev: 83795ef6c3fa12a863cd20b7ec1a2607606987b6)
This change corresponds to upstream d848b454e64ffbd642590b4bbc378619e1547ad3
from master .
Since the systemd version are different between master & kirkstone
applied the patch manually
Signed-off-by: Philip Lorenz <philip.lorenz@bmw.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: AshishKumar Mishra <emailaddress.ashish@gmail.com>
---
meta/recipes-core/systemd/systemd_250.14.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-core/systemd/systemd_250.14.bb b/meta/recipes-core/systemd/systemd_250.14.bb
index 66d20a46fd..087c0035eb 100644
--- a/meta/recipes-core/systemd/systemd_250.14.bb
+++ b/meta/recipes-core/systemd/systemd_250.14.bb
@@ -235,6 +235,7 @@ EXTRA_OEMESON += "-Dnobody-user=nobody \
-Dmode=release \
-Dsystem-alloc-uid-min=101 \
-Dsystem-uid-max=999 \
+ -Dtranslations=${@'false' if d.getVar('USE_NLS') == 'no' else 'true'} \
-Dsystem-alloc-gid-min=101 \
-Dsystem-gid-max=999 \
"
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
2025-10-01 13:25 ` [kirkstone][PATCH] 1/2] systemd: " Gyorgy Sarvari
@ 2025-10-03 4:59 ` Ashish Mishra
0 siblings, 0 replies; 9+ messages in thread
From: Ashish Mishra @ 2025-10-03 4:59 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 269 bytes --]
Gyorgy Sarvari ,
Thanks for feedback , Apologies for mistake .
Have re-shared the patches
https://lists.openembedded.org/g/openembedded-core/topic/kirkstone_patch_1_2/115565555
https://lists.openembedded.org/g/openembedded-core/topic/kirkstone_patch_2_2/115565556
[-- Attachment #2: Type: text/html, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
2025-10-03 4:57 AshishKumar Mishra
@ 2025-10-06 5:33 ` Ashish Mishra
2025-10-13 5:32 ` Ashish Mishra
0 siblings, 1 reply; 9+ messages in thread
From: Ashish Mishra @ 2025-10-06 5:33 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 208 bytes --]
Hi Gyorgy Sarvari,
Good morning.
Would request to please consider this patch for merge.
If you have any feedback / suggestion, please feel free to share.
I will work accordingly.
Thanks ,
Ashish
[-- Attachment #2: Type: text/html, Size: 329 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master
2025-10-06 5:33 ` Ashish Mishra
@ 2025-10-13 5:32 ` Ashish Mishra
0 siblings, 0 replies; 9+ messages in thread
From: Ashish Mishra @ 2025-10-13 5:32 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 207 bytes --]
Hi Gyorgy Sarvari,
Good morning.
Would request to please consider this patch for merge.
If you have any feedback / suggestion, please feel free to share.
I will work accordingly.
Thanks,
Ashish
[-- Attachment #2: Type: text/html, Size: 3944 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-10-13 5:32 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-26 16:48 [kirkstone][PATCH] 1/2] systemd: backport fix for handle USE_NLS from master AshishKumar Mishra
2025-09-26 16:48 ` [kirkstone][PATCH] 2/2] p11-kit: " AshishKumar Mishra
2025-09-29 4:50 ` Ashish Mishra
2025-10-01 13:26 ` Gyorgy Sarvari
2025-10-01 13:25 ` [kirkstone][PATCH] 1/2] systemd: " Gyorgy Sarvari
2025-10-03 4:59 ` Ashish Mishra
-- strict thread matches above, loose matches on Subject: below --
2025-10-03 4:57 AshishKumar Mishra
2025-10-06 5:33 ` Ashish Mishra
2025-10-13 5:32 ` Ashish Mishra
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.