Skip to content

Commit

Permalink
xtensa-build-zephyr: disable XCC build for Intel cAVS hw
Browse files Browse the repository at this point in the history
Recently merged rework of multicore support in Zephyr has
broken builds with XCC. Disable XCC based builds in CI until
issue is resolved in Zephyr mainline. Issue tracked as:
zephyrproject-rtos/zephyr#38349

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
  • Loading branch information
kv2019i authored and lgirdwood committed Sep 6, 2021
1 parent 287a5f9 commit e963aa0
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions scripts/xtensa-build-zephyr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,18 +129,28 @@ build()
;;
cnl)
PLAT_CONFIG='intel_adsp_cavs18'
XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
# issues, tracked as
# https://github.com/zephyrproject-rtos/zephyr/issues/38349
unset XTENSA_TOOLS_ROOT
#XTENSA_CORE="X6H3CNL_2017_8"
#XTENSA_TOOLS_VERSION="RG-2017.8-linux"
# XCC build fails to a linker script compatibility
;;
icl)
PLAT_CONFIG='intel_adsp_cavs20'
XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
# issues, tracked as
# https://github.com/zephyrproject-rtos/zephyr/issues/38349
unset XTENSA_TOOLS_ROOT
#XTENSA_CORE="X6H3CNL_2017_8"
#XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
tgl-h|tgl)
PLAT_CONFIG='intel_adsp_cavs25'
XTENSA_CORE="cavs2x_LX6HiFi3_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
# issues, tracked as
# https://github.com/zephyrproject-rtos/zephyr/issues/38349
unset XTENSA_TOOLS_ROOT
#XTENSA_CORE="cavs2x_LX6HiFi3_2017_8"
#XTENSA_TOOLS_VERSION="RG-2017.8-linux"
RIMAGE_KEY=modules/audio/sof/keys/otc_private_key_3k.pem
;;
imx8)
Expand Down

0 comments on commit e963aa0

Please sign in to comment.