boards: intel_adsp: fix board flashing

add missing declarations to work with ace15 board

Signed-off-by: Mateusz Junkier <mateusz.junkier@intel.com>
This commit is contained in:
Mateusz Junkier 2023-10-31 17:35:56 +01:00 committed by Carles Cufí
commit 8bccb645aa
2 changed files with 4 additions and 2 deletions

View file

@ -5,3 +5,5 @@
board_set_rimage_target(mtl)
set(RIMAGE_SIGN_KEY "otc_private_key_3k.pem" CACHE STRING "default in ace15_mtpm/board.cmake")
include(${ZEPHYR_BASE}/boards/common/intel_adsp.board.cmake)

View file

@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
'''Runner for flashing with the Intel ADSP CAVS boards.'''
'''Runner for flashing with the Intel ADSP boards.'''
import os
import sys
@ -113,7 +113,7 @@ class IntelAdspBinaryRunner(ZephyrBinaryRunner):
if self.do_sign:
self.sign(**kwargs)
if re.search("intel_adsp_cavs", self.platform):
if re.search("intel_adsp", self.platform):
self.require(self.cavstool)
self.flash(**kwargs)
else: