From af3fa413cb1a6570abbd80bef37f7b5f8d08e3cd Mon Sep 17 00:00:00 2001 From: Daniel Baluta Date: Wed, 6 Dec 2023 17:57:59 +0200 Subject: [PATCH] xtensa-build-zephyr.py: Re-add imx8ulp to -all This re-adds imx8ulp to --all platform list. This was removed in commit 7737efadf4fc ("xtensa-build-zephyr.py: remove imx8ulp from --all") Signed-off-by: Daniel Baluta --- scripts/xtensa-build-zephyr.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/xtensa-build-zephyr.py b/scripts/xtensa-build-zephyr.py index 7db441448..01347e1cc 100755 --- a/scripts/xtensa-build-zephyr.py +++ b/scripts/xtensa-build-zephyr.py @@ -133,10 +133,6 @@ platform_configs_all = { "hifi4_mscale_v2_0_2_prod", RIMAGE_KEY = "key param ignored by imx8m" ), -} - -# These cannot be built out of the box yet -extra_platform_configs = { "imx8ulp" : PlatformConfig( "imx8ulp", "nxp_adsp_imx8ulp", f"RI-2023.11{xtensa_tools_version_postfix}", @@ -145,6 +141,10 @@ extra_platform_configs = { ), } +# These cannot be built out of the box yet +extra_platform_configs = { +} + platform_configs = platform_configs_all.copy() platform_configs.update(extra_platform_configs)