mirror of https://github.com/thesofproject/sof.git
scripts: zephyr: Add support to build sof for imx8ulp
Add support to build sof for imx8ulp Signed-off-by: Zhang Peng <peng.zhang_8@nxp.com>
This commit is contained in:
parent
8447952438
commit
61ccb4c8da
|
@ -21,3 +21,4 @@ tests:
|
|||
- nxp_adsp_imx8
|
||||
- nxp_adsp_imx8x
|
||||
- nxp_adsp_imx8m
|
||||
- nxp_adsp_imx8ulp
|
||||
|
|
|
@ -134,6 +134,12 @@ platform_configs = {
|
|||
"hifi4_mscale_v2_0_2_prod",
|
||||
RIMAGE_KEY = "key param ignored by imx8m"
|
||||
),
|
||||
"imx8ulp" : PlatformConfig(
|
||||
"imx8ulp", "nxp_adsp_imx8ulp",
|
||||
f"RI-2023.11{xtensa_tools_version_postfix}",
|
||||
"hifi4_nxp2_s7_v2_1a_prod",
|
||||
RIMAGE_KEY = "key param ignored by imx8ulp"
|
||||
),
|
||||
}
|
||||
|
||||
platform_names = list(platform_configs)
|
||||
|
@ -952,7 +958,7 @@ def gzip_compress(fname, gzdst=None):
|
|||
# Don't run sof_ri_info and ignore silently .ri files that don't have one.
|
||||
RI_INFO_UNSUPPORTED = []
|
||||
|
||||
RI_INFO_UNSUPPORTED += ['imx8', 'imx8x', 'imx8m']
|
||||
RI_INFO_UNSUPPORTED += ['imx8', 'imx8x', 'imx8m', 'imx8ulp']
|
||||
RI_INFO_UNSUPPORTED += ['rn']
|
||||
RI_INFO_UNSUPPORTED += ['mt8186', 'mt8195']
|
||||
|
||||
|
|
Loading…
Reference in New Issue