[1/3] initramfs-tee-ftpm-hook: Add missing optee module

Message ID 904c5379330499a2558498aab7fd58a475b4ff92.1761385036.git.jan.kiszka@siemens.com
State Under Review
Headers show
Series initramfs-tee-ftpm-hook fix and optimizations | expand

Commit Message

Jan Kiszka Oct. 25, 2025, 9:37 a.m. UTC
From: Jan Kiszka <jan.kiszka@siemens.com>

tpm_ftpm_tee only pulls in the TEE core, not the actual interface
drivers. Pull them all (based on kernel 6.18).

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 .../initramfs-tee-ftpm-hook/initramfs-tee-ftpm-hook_0.3.bb      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

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 d430661d..c2fe62c5 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
@@ -15,5 +15,5 @@  SRC_URI += "file://local-top"
 TEE_SUPPLICANT_IN_USERLAND ?= "1"
 
 HOOK_PREREQ = "${@'tee-supplicant' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"
-HOOK_ADD_MODULES = "tpm_ftpm_tee"
+HOOK_ADD_MODULES = "amdtee arm-tstee optee qcomtee tpm_ftpm_tee"
 SCRIPT_PREREQ = "${@'tee-supplicant' if bb.utils.to_boolean(d.getVar('TEE_SUPPLICANT_IN_USERLAND')) else ''}"