Skip to content

Commit 12ad82a

Browse files
marc-hbkv2019i
authored andcommitted
xtensa-build-zephyr.py: checksum autoconf.h instead of configs.c
autoconf.h has strings, configs.c has not. We can do this now since this $BOARD_REVISION fix: zephyrproject-rtos/zephyr@811a74c0199f Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 2df6d1b commit 12ad82a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/xtensa-build-zephyr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ class InstFile:
961961
installed_files = [
962962
# Fail if one of these is missing
963963
InstFile(".config", "config", txt=True),
964-
InstFile("misc/generated/configs.c", "generated_configs.c", txt=True),
964+
InstFile("include/generated/autoconf.h", "generated_autoconf.h", txt=True),
965965
InstFile("include/generated/version.h", "zephyr_version.h",
966966
gzip=False, txt=True),
967967
InstFile("include/generated/sof_versions.h", "sof_versions.h",
@@ -1042,7 +1042,7 @@ class InstFile:
10421042
'dsp_basefw.bin',
10431043

10441044
'*version*.h',
1045-
'*configs.c', # deterministic unlike .config
1045+
'*autoconf.h', # .config has absolute paths in comments, this has not.
10461046
'*.toml', # rimage
10471047
'*.strip', '*stripped*', # stripped ELF files are reproducible
10481048
'boot.mod', # no debug section -> no need to strip this ELF

0 commit comments

Comments
 (0)