Skip to content

Commit

Permalink
tarball_multi_releases: add special casing to create sof-ace-tplg sym…
Browse files Browse the repository at this point in the history
…link

Not ideal, but it seems adding a special case rule is easier to
understand and maintain than trying to modify the existing FW/tplg
copy rules to handle this special case.

Signed-off-by: Kai Vehmanen <[email protected]>
  • Loading branch information
kv2019i committed Mar 27, 2024
1 parent 38d23c0 commit 559970b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tarball_multi_releases.bash
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,15 @@ main()
check_symlinks "$archive_name" ||
die "Found some broken symbolic links after combining\n"

# 2024.03 compatibility hack, add a symlink for sof-ace-tplg as per
# the compatibility note for Intel MTL in
# https://thesofproject.github.io/latest/getting_started/intel_debug/introduction.html#user-space-and-filesystem-requirements
( cd "${archive_name}"
if test -e "sof-ipc4-tplg" -a ! -e "sof-ace-tplg-WIP" ; then
ln -s sof-ipc4-tplg sof-ace-tplg
fi
)

# Rename sof-WIP -> sof-vX.Y, tools-WIP -> tools-vX.Y, ...
( cd "${archive_name}"
set -e
Expand Down

0 comments on commit 559970b

Please sign in to comment.