xtensa-build-zephyr: add imx8x as supported platform

Add imx8x platform to be tested with Zephyr.
imx8x refers to i.MX8QXP target.

Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
This commit is contained in:
Iuliana Prodan 2021-09-21 19:49:35 +03:00 committed by Daniel Baluta
parent 58a13cefac
commit 4b80be18e5
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,7 @@ SUPPORTED_PLATFORMS=()
SUPPORTED_PLATFORMS+=(apl cnl icl tgl-h tgl) SUPPORTED_PLATFORMS+=(apl cnl icl tgl-h tgl)
# NXP # NXP
SUPPORTED_PLATFORMS+=(imx8) SUPPORTED_PLATFORMS+=(imx8 imx8x)
# Default value, can (and sometimes must) be overridden with -p # Default value, can (and sometimes must) be overridden with -p
WEST_TOP="${SOF_TOP}"/zephyrproject WEST_TOP="${SOF_TOP}"/zephyrproject
@ -173,6 +173,10 @@ build_all()
PLAT_CONFIG='nxp_adsp_imx8' PLAT_CONFIG='nxp_adsp_imx8'
RIMAGE_KEY='' # no key needed for imx8 RIMAGE_KEY='' # no key needed for imx8
;; ;;
imx8x)
PLAT_CONFIG='nxp_adsp_imx8x'
RIMAGE_KEY='ignored for imx8x'
;;
*) *)
echo "Unsupported platform: $platform" echo "Unsupported platform: $platform"
exit 1 exit 1