diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2012-03-21 14:33:49 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 15:33:04 +0000 |
commit | ded4c8eea1e13ade4e07298aef3e1f53487953d7 (patch) | |
tree | 9f3f44beab9c78aabb98ede771ca129cf675947b /scripts/qemuimage-testlib | |
parent | ba4e37ae0cffb24c43ba127fafeb43e21364cbf0 (diff) | |
download | poky-ded4c8eea1e13ade4e07298aef3e1f53487953d7.tar.gz |
scripts/qemuimage-testlib: fix typos
(From OE-Core rev: 69f019c48b40ac3b7a8bce2da819f03072e78020)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/qemuimage-testlib')
-rwxr-xr-x | scripts/qemuimage-testlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib index 222e36304c..7bdaa4fb5d 100755 --- a/scripts/qemuimage-testlib +++ b/scripts/qemuimage-testlib | |||
@@ -83,7 +83,7 @@ Test_SCP() | |||
83 | local src=$2 | 83 | local src=$2 |
84 | local des=$3 | 84 | local des=$3 |
85 | local tmpfile=`mktemp` | 85 | local tmpfile=`mktemp` |
86 | local timeout=60 | 86 | local time_out=60 |
87 | local ret=0 | 87 | local ret=0 |
88 | 88 | ||
89 | # We use expect to interactive with target by ssh | 89 | # We use expect to interactive with target by ssh |
@@ -116,7 +116,7 @@ Test_SSH() | |||
116 | shift | 116 | shift |
117 | local command=$@ | 117 | local command=$@ |
118 | local tmpfile=`mktemp` | 118 | local tmpfile=`mktemp` |
119 | local timeout=60 | 119 | local time_out=60 |
120 | local ret=0 | 120 | local ret=0 |
121 | local exp_cmd=`cat << EOF | 121 | local exp_cmd=`cat << EOF |
122 | eval spawn ssh -o UserKnownHostsFile=$tmpfile root@$ip_addr "$command" | 122 | eval spawn ssh -o UserKnownHostsFile=$tmpfile root@$ip_addr "$command" |