xtensa-build-zephyr: split SUPPORTED_PLATFORMS on multiple lines

... to minimize future conflicts.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2021-09-02 22:02:14 +00:00 committed by Daniel Baluta
parent 94db5c7b2f
commit d910206bcf
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,14 @@ set -e
SOF_TOP=$(cd "$(dirname "$0")" && cd .. && pwd)
SUPPORTED_PLATFORMS=(apl cnl icl tgl-h imx8)
SUPPORTED_PLATFORMS=()
# Intel
SUPPORTED_PLATFORMS+=(apl cnl icl tgl-h)
# NXP
SUPPORTED_PLATFORMS+=(imx8)
# Default value, can (and sometimes must) be overridden with -p
WEST_TOP="${SOF_TOP}"/zephyrproject
BUILD_JOBS=$(nproc --all)