scripts: add support for vangogh platform

Add support for Vangogh platform in build scripts.

Signed-off-by: SaiSurya, Ch <saisurya.chakkaveeravenkatanaga@amd.com>
This commit is contained in:
SaiSurya, Ch 2023-06-20 13:02:58 +05:30 committed by Liam Girdwood
parent b1683ec1d6
commit cbee96c9bb
1 changed files with 8 additions and 1 deletions

View File

@ -9,7 +9,7 @@ set -e
# They must have a toolchain available in the latest Docker image.
DEFAULT_PLATFORMS=(
imx8 imx8x imx8m imx8ulp
rn rmb
rn rmb vangogh
mt8186 mt8195
)
@ -235,6 +235,13 @@ do
HOST="xtensa-rmb-elf"
XTENSA_TOOLS_VERSION="RI-2019.1-linux"
;;
vangogh)
PLATFORM="vangogh"
ARCH="xtensa"
XTENSA_CORE="ACP_5_0_001_PROD"
HOST="xtensa-vangogh-elf"
XTENSA_TOOLS_VERSION="RI-2019.1-linux"
;;
mt8186)
PLATFORM="mt8186"
XTENSA_CORE="hifi5_7stg_I64D128"