From 43d4fdd4b393a30dd1c6749d799f330d09581cc3 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Fri, 6 Mar 2026 17:05:51 +0100 Subject: [PATCH] fix(cmakev2/build): fix typo in idf_sign_binary keyfile variable The KEYFILE argument value was stored in a misspelled variable "keyfle" instead of "keyfile", causing custom keyfile paths to be silently ignored. Signed-off-by: Frantisek Hrbata --- tools/cmakev2/build.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmakev2/build.cmake b/tools/cmakev2/build.cmake index 5c1f3253ba7..918beefab25 100644 --- a/tools/cmakev2/build.cmake +++ b/tools/cmakev2/build.cmake @@ -1067,7 +1067,7 @@ function(idf_sign_binary binary) endif() if(ARG_KEYFILE) - set(keyfle "${ARG_KEYFILE}") + set(keyfile "${ARG_KEYFILE}") else() idf_build_get_property(project_dir PROJECT_DIR) get_filename_component(keyfile "${CONFIG_SECURE_BOOT_SIGNING_KEY}" ABSOLUTE BASE_DIR "${project_dir}")