From 5b5566f534941c842489c68eb888a05a5e5c4837 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 11 Oct 2023 12:07:43 +0000 Subject: [PATCH] zephyr: remove stray } from RIMAGE_CONFIG_PATH A stray } is at the end of RIMAGE_CONFIG_PATH causing issues when signing images. Signed-off-by: Anas Nashif --- zephyr/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/CMakeLists.txt b/zephyr/CMakeLists.txt index a2e2a4978..15ce7504a 100644 --- a/zephyr/CMakeLists.txt +++ b/zephyr/CMakeLists.txt @@ -62,7 +62,7 @@ set(RIMAGE_TOP ${sof_top_dir}/rimage) # Save path to rimage configuration files in cmake cache for later use by # rimage during the "west sign" stage -set(RIMAGE_CONFIG_PATH ${RIMAGE_TOP}/config} CACHE PATH +set(RIMAGE_CONFIG_PATH ${RIMAGE_TOP}/config CACHE PATH " Path to rimage board configuration files") include(ExternalProject)