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:39:36 +0000 |
commit | 11a9c24d6c858c9ab99d4c56a14018729f5a4fa9 (patch) | |
tree | cb3002183d5b916a56afc3f57458a0e56f8f2946 /scripts | |
parent | 3b95964bc1cb63c1b78249fd8f8c2d5d5fb2c288 (diff) | |
download | poky-11a9c24d6c858c9ab99d4c56a14018729f5a4fa9.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.
(From OE-Core rev: abf8975bce4bf5d05dbb186d5089f0c3fe07eefb)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 2 |
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 | |||
182 | SLIRP_ENABLED="yes" | 182 | SLIRP_ENABLED="yes" |
183 | ;; | 183 | ;; |
184 | "publicvnc") | 184 | "publicvnc") |
185 | SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc 0.0.0.0:0" | 185 | SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -vnc :0" |
186 | ;; | 186 | ;; |
187 | *-image*) | 187 | *-image*) |
188 | [ -z "$ROOTFS" ] || \ | 188 | [ -z "$ROOTFS" ] || \ |