Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion scripts/xtensa-build-zephyr.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,10 @@ class InstFile:
# Fail if one of these is missing
InstFile(".config", "config", txt=True),
InstFile("misc/generated/configs.c", "generated_configs.c", txt=True),
InstFile("include/generated/version.h", "zephyr_version.h",
gzip=False, txt=True),
InstFile("include/generated/sof_versions.h", "sof_versions.h",
gzip=False, txt=True),
InstFile(BIN_NAME + ".elf"),
InstFile(BIN_NAME + ".lst", txt=True),
InstFile(BIN_NAME + ".map", txt=True),
Expand Down Expand Up @@ -821,7 +825,13 @@ class InstFile:
BIN_NAME = 'zephyr'

CHECKSUM_WANTED = [
'*.ri', # Some .ri files have a non-deterministic signature, others not
# Some .ri files have a deterministic signature, others use
# a cryptographic salt. Even for the latter a checksum is still
# useful to match an artefact with a specific build log.
'*.ri',
'dsp_basefw.bin',

'*version*.h',
'*configs.c', # deterministic unlike .config
'*.strip', '*stripped*', # stripped ELF files are reproducible
'boot.mod', # no debug section -> no need to strip this ELF
Expand Down