1#!/bin/bash 2# SPDX-License-Identifier: BSD-3-Clause 3# Copyright(c) 2019 Intel Corporation. All rights reserved. 4 5# usage: ./scripts/sof-target-install.sh up2-hostname ip 6 7for host in $@ 8do 9 scp build_*_*/sof-*.ri root@${host}:/lib/firmware/intel/sof/ 10 scp tools/build_tools/topology/*.tplg root@${host}:/lib/firmware/intel/sof-tplg/ 11 scp tools/build_tools/logger/sof-logger \ 12 build_*_*/src/arch/xtensa/sof-*.ldc \ 13 tools/coredumper/* \ 14 tools/build_tools/eqctl/sof-eqctl \ 15 tools/kmod_scripts/* \ 16 root@${host}:~/ 17done 18