scripts: remove restriction for tgl rimage signing

Currently xtensa-build-all.sh has restriction to use rimage for tgl
signing, because rimage didn't support tgl. As rimage now has support
for tgl signing let's remove this limitation.

Signed-off-by: Jaska Uimonen <jaska.uimonen@intel.com>
This commit is contained in:
Jaska Uimonen 2020-11-13 08:49:59 +02:00 committed by Liam Girdwood
parent 926fe34d95
commit 6f0829b2a6
2 changed files with 2 additions and 11 deletions

2
rimage

@ -1 +1 @@
Subproject commit 0d2af68a9e2bc8454de343722e263f9594fa9d82
Subproject commit f3e52cd17e04dcc703a54501fd26e166c927e55e

View File

@ -377,16 +377,7 @@ do
make overrideconfig
fi
# TGL needs MEU tool for signing
if [ 'tgl' = "${platform}" ] && [ "${SIGNING_TOOL}" = "RIMAGE" ]
then # build unsigned FW binary
make sof -j "${BUILD_JOBS}" ${BUILD_VERBOSE}
if [ "$BUILD_ROM" = "yes" ]; then
make rom_dump ${BUILD_VERBOSE}
fi
else # build signed FW binary
make bin -j "${BUILD_JOBS}" ${BUILD_VERBOSE}
fi
make bin -j "${BUILD_JOBS}" ${BUILD_VERBOSE}
cd "$WORKDIR"
done # for platform in ...