summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 17:58:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-21 00:29:30 +0100
commite7126c1e53a85c36c312fedebac8bce983e55fb3 (patch)
tree82a1d76622c395428124751cf2d5a6141635f2c4 /scripts
parent74695278555a35e2145a65f2e372edb70b380c20 (diff)
downloadast2050-yocto-poky-e7126c1e53a85c36c312fedebac8bce983e55fb3.zip
ast2050-yocto-poky-e7126c1e53a85c36c312fedebac8bce983e55fb3.tar.gz
Replace POKY_KVM_WIKI -> YOCTO_KVM_WIKI
(From OE-Core rev: 416e76102fdef606a0459351b85d4f7b30729114) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 11b8c6e..cef7171 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -184,12 +184,12 @@ while [ $i -le $# ]; do
i=$((i + 1))
done
-POKY_KVM_WIKI="https://wiki.yoctoproject.org/wiki/How_to_enable_KVM_for_Poky_qemu"
+YOCTO_KVM_WIKI="https://wiki.yoctoproject.org/wiki/How_to_enable_KVM_for_Poky_qemu"
# Detect KVM configuration
if [[ "x$KVM_ENABLED" == "xyes" ]]; then
if [[ -z "$KVM_CAPABLE" ]]; then
echo "You are tring to enable KVM on cpu without VT support. Remove kvm from the command-line, or refer";
- echo "$POKY_KVM_WIKI";
+ echo "$YOCTO_KVM_WIKI";
exit 1;
fi
if [[ "x$MACHINE" != "xqemux86" && "x$MACHINE" != "xqemux86-64" ]]; then
@@ -198,14 +198,14 @@ if [[ "x$KVM_ENABLED" == "xyes" ]]; then
fi
if [ ! -e /dev/kvm ]; then
echo "Missing KVM device. Have you inserted kvm modules? Pls. refer";
- echo "$POKY_KVM_WIKI";
+ echo "$YOCTO_KVM_WIKI";
exit 1;
fi
if 9<>/dev/kvm ; then
SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -enable-kvm"
else
echo "You have no rights on /dev/kvm. Pls. change the owndership as described at";
- echo "$POKY_KVM_WIKI";
+ echo "$YOCTO_KVM_WIKI";
exit 1;
fi
fi
OpenPOWER on IntegriCloud