aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-11-05 17:13:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-16 11:36:49 +0000
commitabf8975bce4bf5d05dbb186d5089f0c3fe07eefb (patch)
treec56dd203fb597632223ee169166c6180b0e65a3a
parentd1a97475b4e6c7066a3161cb9cec1d4b27644518 (diff)
downloadopenembedded-core-contrib-abf8975bce4bf5d05dbb186d5089f0c3fe07eefb.tar.gz
runqemu: don't specify IP when starting a VNC server
Whilst qemu doesn't appear to support opening sockets on IPv6 yet, future-proof the script by just specifying a port and letting qemu work out the rest. Signed-off-by: Ross Burton <ross.burton@intel.com>
-rwxr-xr-xscripts/runqemu2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index e01d276f7b..373202a2b7 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -182,7 +182,7 @@ while true; do
SLIRP_ENABLED="yes"
;;
"publicvnc")
- SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc 0.0.0.0:0"
+ SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc :0"
;;
*-image*)
[ -z "$ROOTFS" ] || \