From 559970b4b2cfed0eebf606f48434a12c39e4fa97 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Wed, 27 Mar 2024 20:29:37 +0200 Subject: [PATCH] tarball_multi_releases: add special casing to create sof-ace-tplg symlink 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 --- tarball_multi_releases.bash | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tarball_multi_releases.bash b/tarball_multi_releases.bash index d3b6a84..efe0f55 100755 --- a/tarball_multi_releases.bash +++ b/tarball_multi_releases.bash @@ -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