diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-20 17:58:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-20 18:47:31 +0100 |
commit | 416e76102fdef606a0459351b85d4f7b30729114 (patch) | |
tree | 7bb7dc89b46b441ccae2cef8a423976ec545b6a0 | |
parent | c056aeaa13549b404088e3d465f3b03443e5ab88 (diff) | |
download | openembedded-core-contrib-416e76102fdef606a0459351b85d4f7b30729114.tar.gz |
Replace POKY_KVM_WIKI -> YOCTO_KVM_WIKI
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/runqemu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 11b8c6e45c7..cef71712e71 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 |