diff options
author | Ross Burton <ross.burton@intel.com> | 2013-06-12 11:24:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-13 17:37:57 +0100 |
commit | 1498c431a161e8b3ddebefb5f03f4f11d5796c1d (patch) | |
tree | dc24aa57838de2494176ef4d73ec769d87974d5e | |
parent | e4b206f28032916e95cc21a893af687409efe83f (diff) | |
download | openembedded-core-contrib-1498c431a161e8b3ddebefb5f03f4f11d5796c1d.tar.gz |
runqemu: when tunctl can't be found, say what package builds it
If runqemu is used without actually building any qemu images (i.e. you
downloaded the images) it's likely that qemu-helper-native hasn't been built.
Instead of just saying what command can't be found, tell the user how to solve
their problem.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rwxr-xr-x | scripts/runqemu-ifdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-ifdown b/scripts/runqemu-ifdown index 710d2975c53..8b8c5a4a7ac 100755 --- a/scripts/runqemu-ifdown +++ b/scripts/runqemu-ifdown @@ -45,7 +45,7 @@ NATIVE_SYSROOT_DIR=$2 TUNCTL=$NATIVE_SYSROOT_DIR/usr/bin/tunctl if [ ! -e "$TUNCTL" ]; then - echo "Error: Unable to find tunctl binary in '$NATIVE_SYSROOT_DIR/usr/bin'" + echo "Error: Unable to find tunctl binary in '$NATIVE_SYSROOT_DIR/usr/bin', please bitbake qemu-helper-native" exit 1 fi |