mirror of https://github.com/thesofproject/sof.git
scripts: add rembrandt support
Add rembrandt build support. Signed-off-by: Balakishorepati <balaKishore.pati@amd.com>
This commit is contained in:
parent
38e4018c26
commit
c7fc085bd5
|
@ -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
|
# Work in progress can be added to this "staging area" without breaking
|
||||||
# the -a option for everyone.
|
# the -a option for everyone.
|
||||||
SUPPORTED_PLATFORMS=( "${DEFAULT_PLATFORMS[@]}" )
|
SUPPORTED_PLATFORMS=( "${DEFAULT_PLATFORMS[@]}" )
|
||||||
|
SUPPORTED_PLATFORMS=( "${DEFAULT_PLATFORMS[@]}" rmb)
|
||||||
|
|
||||||
BUILD_ROM=no
|
BUILD_ROM=no
|
||||||
BUILD_DEBUG=no
|
BUILD_DEBUG=no
|
||||||
|
@ -335,6 +336,13 @@ do
|
||||||
HOST="xtensa-rn-elf"
|
HOST="xtensa-rn-elf"
|
||||||
XTENSA_TOOLS_VERSION="RI-2019.1-linux"
|
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)
|
mt8186)
|
||||||
PLATFORM="mt8186"
|
PLATFORM="mt8186"
|
||||||
XTENSA_CORE="hifi5_7stg_I64D128"
|
XTENSA_CORE="hifi5_7stg_I64D128"
|
||||||
|
|
Loading…
Reference in New Issue