diff options
author | Ken Carlino <Kenneth.Carlino@Symphonyteleca.com> | 2015-07-17 12:56:00 -0500 |
---|---|---|
committer | Ken Carlino <Kenneth.Carlino@Symphonyteleca.com> | 2015-07-17 12:56:00 -0500 |
commit | b8512cf1d4a2675cd941fd2ed723cc25afba0de7 (patch) | |
tree | bcfaecf5b7488897275857a35dd9e84fd1b0c4c1 /run_echo_talker.sh | |
parent | 365cf04f73715780e123312ddadd83d202aa1bdd (diff) | |
download | Open-AVB-b8512cf1d4a2675cd941fd2ed723cc25afba0de7.tar.gz |
STC AVTP Pipeline : Work in progress 1
Diffstat (limited to 'run_echo_talker.sh')
-rwxr-xr-x | run_echo_talker.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/run_echo_talker.sh b/run_echo_talker.sh new file mode 100755 index 00000000..33712285 --- /dev/null +++ b/run_echo_talker.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Simple script to run echo_talker + +if [ "$#" -eq "0" ]; then + echo "please enter network interface name as parameter. For example:" + echo "sudo ./run_echo_talker eth1" + exit -1 +fi + +# TODO_OPENAVB : Currently assumes a bin directory. +cd ../build/bin +exec ./openavb_host echo_talker.ini,ifname=$1 |