public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH] uki.bbclass: fix ukify arguments assembly
@ 2026-04-02  7:33 Pavel Löbl
  2026-04-02  7:52 ` Mikko Rapeli
  0 siblings, 1 reply; 3+ messages in thread
From: Pavel Löbl @ 2026-04-02  7:33 UTC (permalink / raw)
  To: openembedded-core; +Cc: Michelle Lin, Mikko Rapeli, Pavel Löbl

Missing space before --uname ukify option mangles the command line
string when KERNEL_VERSION is set.

Signed-off-by: Pavel Löbl <pavel@loebl.cz>
---
 meta/classes-recipe/uki.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass
index 326697a06660..a89e92b77869 100644
--- a/meta/classes-recipe/uki.bbclass
+++ b/meta/classes-recipe/uki.bbclass
@@ -140,7 +140,7 @@ python do_uki() {
         # not always needed, ukify can detect version from kernel binary
         kernel_version = d.getVar('KERNEL_VERSION')
         if kernel_version:
-            ukify_cmd += "--uname %s" % (kernel_version)
+            ukify_cmd += " --uname %s" % (kernel_version)
     else:
         bb.fatal("ERROR - UKI_KERNEL_FILENAME not set")
 
-- 
2.53.0



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

end of thread, other threads:[~2026-04-02 10:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-02  7:33 [PATCH] uki.bbclass: fix ukify arguments assembly Pavel Löbl
2026-04-02  7:52 ` Mikko Rapeli
2026-04-02 10:22   ` Pavel Löbl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox