Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /usr/share/doc/alsa-sof-firmware/ |
Upload File : |
Starting from v1.7 the installation process has been simplified and the go.sh script is not used anymore. Instead: ``` sudo mv /lib/firmware/intel/sof* some_backup_location/ sudo mv /usr/local/bin/sof-* some_backup_location/ # optional sudo ./install.sh v1.N.x/v1.N-rcM ``` The go.sh script still applies to older releases. You don't have to use install.sh, you can use any recursive copy of your preference. This is all what install.sh does, example with v1.7.x/v1.7: ``` cd v1.7.x rsync -a sof*v1.7 /lib/firmware/intel/ ln -s sof-v1.7 /lib/firmware/intel/sof ln -s sof-tplg-v1.7 /lib/firmware/intel/sof-tplg rsync tools-v1.7/* /usr/local/bin ``` If you don't want the symbolic links: ``` rsync -a sof-v1.7/ /lib/firmware/intel/sof/ rsync -a sof-tplg-v1.7/ /lib/firmware/intel/sof-tplg/ rsync tools-v1.7/ /usr/local/bin/ ``` Remember that for rsync (and some versions of `cp`), a trailing slash in srcdir/ is roughly equivalent to srcdir/* + srcdir/.??*