From c7fc085bd52e9cf6952b4ecc6b5d56c36cc54e79 Mon Sep 17 00:00:00 2001 From: Balakishorepati Date: Fri, 25 Mar 2022 15:49:50 +0530 Subject: [PATCH] scripts: add rembrandt support Add rembrandt build support. Signed-off-by: Balakishorepati --- scripts/xtensa-build-all.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/xtensa-build-all.sh b/scripts/xtensa-build-all.sh index 6d852de44..2fb659cfb 100755 --- a/scripts/xtensa-build-all.sh +++ b/scripts/xtensa-build-all.sh @@ -13,6 +13,7 @@ DEFAULT_PLATFORMS=( byt cht bdw hsw tgl tgl-h apl skl kbl cnl sue icl jsl \ # Work in progress can be added to this "staging area" without breaking # the -a option for everyone. SUPPORTED_PLATFORMS=( "${DEFAULT_PLATFORMS[@]}" ) +SUPPORTED_PLATFORMS=( "${DEFAULT_PLATFORMS[@]}" rmb) BUILD_ROM=no BUILD_DEBUG=no @@ -335,6 +336,13 @@ do HOST="xtensa-rn-elf" XTENSA_TOOLS_VERSION="RI-2019.1-linux" ;; + rmb) + PLATFORM="rembrandt" + ARCH="xtensa" + XTENSA_CORE="LX7_HiFi5_PROD" + HOST="xtensa-rmb-elf" + XTENSA_TOOLS_VERSION="RI-2019.1-linux" + ;; mt8186) PLATFORM="mt8186" XTENSA_CORE="hifi5_7stg_I64D128"