Skip to content

Commit 9dd0aa2

Browse files
KangJianXnashif
authored andcommitted
boards: cavs15: change the signing command in flash.sh
Change the command that signing with rimage by flash script after commitID:b553166a has been merged, that patch add a new option -D for specify configuration, so update the command of this script. Signed-off-by: Jian Kang <[email protected]>
1 parent b8b946f commit 9dd0aa2

File tree

1 file changed

+3
-3
lines changed
  • boards/xtensa/intel_adsp_cavs15/tools

1 file changed

+3
-3
lines changed

boards/xtensa/intel_adsp_cavs15/tools/flash.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ if [ -z "$2" ]
1010
then
1111
echo "Signing using default key"
1212
west sign -d ${BUILD} -t rimage
13-
else
13+
elif [ -n "$3" ] && [ -n "$4" ]
14+
then
1415
echo "Signing with key " $key
15-
west sign -d ${BUILD} -t rimage -- -k $2
16+
west sign -d ${BUILD} -t rimage -p $4 -D $3 -- -k $2
1617
fi
17-
1818
echo ${FLASHER} -f ${FIRMWARE}
1919
${FLASHER} -f ${FIRMWARE} || /bin/true 2>&1

0 commit comments

Comments
 (0)