From 89d90ae0afc479000439f73f83f3ed22179eceb4 Mon Sep 17 00:00:00 2001 From: Guennadi Liakhovetski Date: Tue, 7 May 2024 12:48:48 +0200 Subject: [PATCH] build: remove a redundant call to 'str()' west.configuration.get() already returns a string, no need to call 'str()' on it again. Signed-off-by: Guennadi Liakhovetski --- scripts/xtensa-build-zephyr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xtensa-build-zephyr.py b/scripts/xtensa-build-zephyr.py index 950914238..c0f9d48e8 100755 --- a/scripts/xtensa-build-zephyr.py +++ b/scripts/xtensa-build-zephyr.py @@ -934,7 +934,7 @@ def install_lib(sof_lib_dir, abs_build_dir, platform_wconfig): llext_input = entry_path / (llext_base + '.llext') llext_output = entry_path / (llext_file + '.ri') - sign_cmd = [str(platform_wconfig.get("rimage.path")), "-o", str(llext_output), + sign_cmd = [platform_wconfig.get("rimage.path"), "-o", str(llext_output), "-e", "-c", str(rimage_cfg), "-k", str(signing_key), "-l", "-r", str(llext_input)]