xtensa-build-zephyr.py: create /lib/firmware tarball

With addition of loadable modules, SOF firmware installation depends
much more on symbolic links. Add a step to build script to create a
tarball of the installed firmware binaries in the build-staging-sof
tree. The created tarball (e.g. build-sof-staging/sof/sof.tar.gz)
provides a ready structure that can be unpacked to e.g. /lib/firmware on
Linux target machines.

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
This commit is contained in:
Kai Vehmanen 2024-08-12 17:05:38 +03:00 committed by Curtis Malainey
parent a02f367651
commit c8163bb58b
1 changed files with 27 additions and 0 deletions

View File

@ -39,6 +39,7 @@ import json
import gzip import gzip
import dataclasses import dataclasses
import concurrent.futures as concurrent import concurrent.futures as concurrent
import tarfile
from west import configuration as west_config from west import configuration as west_config
@ -330,6 +331,8 @@ IPC4
sof-PLAT.ri\n sof-PLAT.ri\n
""") """)
parser.add_argument("--no-tarball", default=False, action='store_true',
help="""Do not create a tar file of the installed firmware files under build-sof-staging.""")
parser.add_argument("--version", required=False, action="store_true", parser.add_argument("--version", required=False, action="store_true",
help="Prints version of this script.") help="Prints version of this script.")
@ -1169,6 +1172,28 @@ def reproducible_checksum(platform, ri_file):
chk256 = sof_ri_info.EraseVariables(ri_file, parsed_ri, west_top / repro_output) chk256 = sof_ri_info.EraseVariables(ri_file, parsed_ri, west_top / repro_output)
print('sha256sum {0}\n{1} {0}'.format(repro_output, chk256)) print('sha256sum {0}\n{1} {0}'.format(repro_output, chk256))
def create_tarball():
# vendor directories (typically under /lib/firmware) to include
# in the tarball
vendor_dirs = [ 'intel']
build_top = west_top / 'build-sof-staging' / 'sof'
tarball_name = 'sof.tgz'
prev_cwd = os.getcwd()
os.chdir(build_top)
tarball_path = build_top / tarball_name
with tarfile.open(tarball_path, 'w:gz') as tarball:
for vendor_dir in vendor_dirs:
vendor_dir_path = build_top / vendor_dir
if not vendor_dir_path.exists():
continue
tarball.add(vendor_dir, recursive=True)
print(f"Tarball %s created" % tarball_path)
os.chdir(prev_cwd)
def main(): def main():
parse_args() parse_args()
@ -1190,6 +1215,8 @@ def main():
build_rimage() build_rimage()
build_platforms() build_platforms()
if not args.no_tarball:
create_tarball()
show_installed_files() show_installed_files()
if __name__ == "__main__": if __name__ == "__main__":