From a81434538a8c7f6baf764ae57cba710ca6c75f69 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 25 Mar 2009 11:29:54 +0000 Subject: [PATCH] ioemu: call xenstore_store_serial_port_info() for xm console call xenstore_store_serial_port_info() for xm console. Without this patch, xm console doesn't work for hvm domain. Signed-off-by: Isaku Yamahata [ Bug was introduced by me during most recent merge from upstream -iwj ] --- vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vl.c b/vl.c index 5801e428..61544498 100644 --- a/vl.c +++ b/vl.c @@ -5884,6 +5884,7 @@ int main(int argc, char **argv, char **envp) snprintf(label, sizeof(label), "serial%d", i); if (strstart(devname, "vc", 0)) qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i); + xenstore_store_serial_port_info(i, serial_hds[i], devname); } } -- 2.39.5