2019-01-30 18:47:36 +08:00
|
|
|
#!/bin/bash
|
2019-06-02 04:58:16 +08:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2019 Intel Corporation. All rights reserved.
|
|
|
|
|
2019-02-11 20:07:37 +08:00
|
|
|
# usage: ./scripts/sof-target-install.sh up2-hostname ip
|
2019-01-30 18:47:36 +08:00
|
|
|
|
|
|
|
for host in $@
|
|
|
|
do
|
2019-02-10 22:03:35 +08:00
|
|
|
scp build_*_*/sof-*.ri root@${host}:/lib/firmware/intel/sof/
|
2019-02-11 20:07:37 +08:00
|
|
|
scp tools/build_tools/topology/*.tplg root@${host}:/lib/firmware/intel/sof-tplg/
|
|
|
|
scp tools/build_tools/logger/sof-logger \
|
2019-02-01 16:57:10 +08:00
|
|
|
build_*_*/src/arch/xtensa/sof-*.ldc \
|
|
|
|
tools/coredumper/* \
|
2019-02-11 20:07:37 +08:00
|
|
|
tools/build_tools/eqctl/sof-eqctl \
|
2019-02-01 16:57:10 +08:00
|
|
|
tools/kmod_scripts/* \
|
|
|
|
root@${host}:~/
|
2019-01-30 18:47:36 +08:00
|
|
|
done
|