From 1d5b8f471ca70064329122a8b05136713c3830a1 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 0a2de11723b8..5f9b6db4d464 100755 --- a/scripts/xtensa-build-zephyr.py +++ b/scripts/xtensa-build-zephyr.py @@ -136,10 +136,6 @@ class PlatformConfig: "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}", @@ -148,6 +144,10 @@ class PlatformConfig: ), } +# These cannot be built out of the box yet +extra_platform_configs = { +} + platform_configs = platform_configs_all.copy() platform_configs.update(extra_platform_configs)