From patchwork Fri Jan 25 16:00:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] sclpconsole: Dont instantiate sclpconsole with nodefaults From: Christian Borntraeger X-Patchwork-Id: 215788 Message-Id: <1359129619-11276-2-git-send-email-borntraeger@de.ibm.com> To: Alexander Graf Cc: Cornelia Huck , Christian Borntraeger , Jens Freimann , qemu-devel , mihajlov@linux.vnet.ibm.com Date: Fri, 25 Jan 2013 17:00:19 +0100 libvirt specifies nodefaults and creates an sclp console with special parameters. Let qemu follow nodefaults and dont create an sclp console if nodefaults is specified. Signed-off-by: Christian Borntraeger --- vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vl.c b/vl.c index affc524..ea26dae 100644 --- a/vl.c +++ b/vl.c @@ -3658,6 +3658,7 @@ int main(int argc, char **argv, char **envp) default_serial = 0; default_parallel = 0; default_virtcon = 0; + default_sclp = 0; default_monitor = 0; default_net = 0; default_floppy = 0;