west: sign/rimage: skip extended manifest when !SOF
Non-SOF build does not have extended manifest data for rimage to process, which might result in rimage error. So do not do extended manifest during signing when not doing SOF builds. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
73d5ecc0c5
commit
3be5732a68
1 changed files with 7 additions and 0 deletions
|
@ -517,6 +517,13 @@ class RimageSigner(Signer):
|
|||
else:
|
||||
no_manifest = False
|
||||
|
||||
# Non-SOF build does not have extended manifest data for
|
||||
# rimage to process, which might result in rimage error.
|
||||
# So skip it when not doing SOF builds.
|
||||
is_sof_build = build_conf.getboolean('CONFIG_SOF')
|
||||
if not is_sof_build:
|
||||
no_manifest = True
|
||||
|
||||
if no_manifest:
|
||||
extra_ri_args = [ ]
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue