Merge pull request #171 from koluckirafal/avs-topology-mirror

Use local copy of Intel AVS topology build instead of fetching from GitHub
This commit is contained in:
Alicja Michalska 2024-09-13 15:23:05 +02:00 committed by GitHub
commit 99eef5cc3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

Binary file not shown.

View file

@ -147,9 +147,7 @@ def avs_audio():
print_status("Installing topology")
mkdir("/tmp/avs_tplg")
avs_tplg_ver = "2024.02"
avs_tplg_url = f"https://github.com/thesofproject/avs-topology-xml/releases/download/v{avs_tplg_ver}/avs-topology_{avs_tplg_ver}.tar.gz"
urlretrieve(url=avs_tplg_url, filename="/tmp/avs_tplg/avs-tplg.tar.gz")
bash("tar xf /tmp/avs_tplg/avs-tplg.tar.gz -C /tmp/avs_tplg")
bash(f"tar xf ./blobs/avs-topology_{avs_tplg_ver}.tar.gz -C /tmp/avs_tplg")
mkdir("/lib/firmware/intel/avs", create_parents=True)
cpdir("/tmp/avs_tplg/avs-topology/lib/firmware/intel/avs", "/lib/firmware/intel/avs")