blob: f6958f0e7e9483bcbd323c532ca647af2ba977e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# bash test script running in qemu
#
# Author: veera <veerabrahmamvr@huawei.com>
#
# This file is licensed under the GNU General Public License,
# Version 2.
#
which bash
if [ $? -eq 0 ]; then
echo "QEMU: bash is exist in the target by default"
exit 0
else
echo "QEMU: No bash command in the qemu target"
exit 1
fi
|