summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-02-08 11:17:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-11 14:46:09 +0000
commit06e245303c2694dc76973250d9061c0e07ea2a3f (patch)
treef3fbc6f6f7bf8f2779d0599e53498f64d0173f69 /scripts/runqemu
parent42f221f297b5baeb59119222aac52ae1ac160721 (diff)
downloadast2050-yocto-poky-06e245303c2694dc76973250d9061c0e07ea2a3f.zip
ast2050-yocto-poky-06e245303c2694dc76973250d9061c0e07ea2a3f.tar.gz
runqemu: add option to make the VNC server publically available
If the qemu is running on a headless machine, a VNC server that only allows connections from localhost isn't too useful. Add a "vncpublic" option to bind a VNC server to 0.0.0.0, so it's publically available. (From OE-Core rev: 883666821ec46483bbfb9b3cb84c5afa8118a553) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-xscripts/runqemu4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index c20c8dd..6c2a684 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -33,6 +33,7 @@ usage() {
echo " nographic - disables video console"
echo " serial - enables a serial console on /dev/ttyS0"
echo " kvm - enables KVM when running qemux86/qemux86-64 (VT-capable CPU required)"
+ echo " publicvnc - enable a VNC server open to all hosts"
echo " qemuparams=\"xyz\" - specify custom parameters to QEMU"
echo " bootparams=\"xyz\" - specify custom kernel parameters during boot"
echo ""
@@ -172,6 +173,9 @@ while true; do
KVM_ENABLED="yes"
KVM_CAPABLE=`grep -q 'vmx\|svm' /proc/cpuinfo && echo 1`
;;
+ "publicvnc")
+ SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc 0.0.0.0:0"
+ ;;
"") break ;;
*)
# A directory name is an nfs rootfs
OpenPOWER on IntegriCloud