diff options
author | Ross Burton <ross.burton@intel.com> | 2015-11-05 17:13:22 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:36:49 +0000 |
commit | abf8975bce4bf5d05dbb186d5089f0c3fe07eefb (patch) | |
tree | c56dd203fb597632223ee169166c6180b0e65a3a /scripts/runqemu | |
parent | d1a97475b4e6c7066a3161cb9cec1d4b27644518 (diff) | |
download | openembedded-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>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index e01d276f7b4..373202a2b74 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" ] || \ |