public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] initramfs-tee-ftpm-hook: Fix missing separator in OVERRIDES append
@ 2025-11-26 11:28 'Sai Sree Kartheek Adivi' via isar-users
  2025-11-27  7:15 ` 'Jan Kiszka' via isar-users
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: 'Sai Sree Kartheek Adivi' via isar-users @ 2025-11-26 11:28 UTC (permalink / raw)
  To: isar-users, jan.kiszka, vigneshr; +Cc: s-adivi

Prepend the missing colon to the appended string to ensure 'supp-user'
is registered as a distinct override.

This ensures that SRC_URI:supp-user takes effect when
TEE_SUPPLICANT_IN_USERLAND is to "1".

Fixes: 3896e4da ("initramfs-tee-ftpm-hook: Use override to model variations")
Signed-off-by: Sai Sree Kartheek Adivi <s-adivi@ti.com>
---
 .../initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
index 94399374..f1015028 100644
--- a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
+++ b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
@@ -12,7 +12,7 @@ require recipes-initramfs/initramfs-hook/hook.inc
 # NOTE: default will eventually be flipped
 TEE_SUPPLICANT_IN_USERLAND ?= "1"
 
-OVERRIDES .= "${@'supp-user' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"
+OVERRIDES .= "${@':supp-user' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"
 
 SRC_URI:supp-user += "file://local-top"
 
-- 
2.34.1

-- 
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/20251126112816.3415995-1-s-adivi%40ti.com.

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH] initramfs-tee-ftpm-hook: Fix missing separator in OVERRIDES append
@ 2025-11-26  9:24 'Sai Sree Kartheek Adivi' via isar-users
  0 siblings, 0 replies; 10+ messages in thread
From: 'Sai Sree Kartheek Adivi' via isar-users @ 2025-11-26  9:24 UTC (permalink / raw)
  To: isar-users, jan.kiszka, vigneshr

Prepend the missing colon to the appended string to ensure 'supp-user'
is registered as a distinct override.

This ensures that SRC_URI:supp-user takes effect when
TEE_SUPPLICANT_IN_USERLAND is to "1".

Fixes: 3896e4da ("initramfs-tee-ftpm-hook: Use override to model variations")
Signed-off-by: Sai Sree Kartheek Adivi <s-adivi@ti.com>
---
 .../initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
index 94399374..f1015028 100644
--- a/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
+++ b/meta/recipes-initramfs/initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb
@@ -12,7 +12,7 @@ require recipes-initramfs/initramfs-hook/hook.inc
 # NOTE: default will eventually be flipped
 TEE_SUPPLICANT_IN_USERLAND ?= "1"
 
-OVERRIDES .= "${@'supp-user' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"
+OVERRIDES .= "${@':supp-user' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"
 
 SRC_URI:supp-user += "file://local-top"
 
-- 
2.34.1

-- 
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/20251126092443.3298987-1-s-adivi%40ti.com.

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

end of thread, other threads:[~2025-11-28 16:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-26 11:28 [PATCH] initramfs-tee-ftpm-hook: Fix missing separator in OVERRIDES append 'Sai Sree Kartheek Adivi' via isar-users
2025-11-27  7:15 ` 'Jan Kiszka' via isar-users
2025-11-27  8:45   ` Zhihang Wei
2025-11-27  8:48     ` 'Jan Kiszka' via isar-users
2025-11-27 16:18 ` Zhihang Wei
2025-11-27 16:47   ` 'Jan Kiszka' via isar-users
2025-11-28  8:55     ` Zhihang Wei
2025-11-28 16:05 ` Zhihang Wei
2025-11-28 16:06 ` Zhihang Wei
  -- strict thread matches above, loose matches on Subject: below --
2025-11-26  9:24 'Sai Sree Kartheek Adivi' via isar-users

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