mirror of https://github.com/thesofproject/sof.git
18 lines
525 B
Bash
Executable File
18 lines
525 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019 Intel Corporation. All rights reserved.
|
|
|
|
# usage: ./scripts/sof-target-install.sh up2-hostname ip
|
|
|
|
for host in $@
|
|
do
|
|
scp build_*_*/sof-*.ri root@${host}:/lib/firmware/intel/sof/
|
|
scp tools/build_tools/topology/*.tplg root@${host}:/lib/firmware/intel/sof-tplg/
|
|
scp tools/build_tools/logger/sof-logger \
|
|
build_*_*/src/arch/xtensa/sof-*.ldc \
|
|
tools/coredumper/* \
|
|
tools/build_tools/eqctl/sof-eqctl \
|
|
tools/kmod_scripts/* \
|
|
root@${host}:~/
|
|
done
|