From patchwork Tue Jan 29 20:50:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [16/19] sclpconsole: Don't instantiate sclpconsole with -nodefaults Date: Tue, 29 Jan 2013 10:50:56 -0000 From: Alexander Graf X-Patchwork-Id: 216668 Message-Id: <1359492659-16362-17-git-send-email-agraf@suse.de> To: qemu-devel Cc: Blue Swirl , Christian Borntraeger , =?utf-8?q?Aur=C3=A9lien=20Jarno?= From: Christian Borntraeger libvirt specifies nodefaults and creates an sclp console with special parameters. Let qemu follow nodefaults and don't create an sclp console if nodefaults is specified. Signed-off-by: Christian Borntraeger Signed-off-by: Alexander Graf --- vl.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/vl.c b/vl.c index 8b0961e..910abb6 100644 --- a/vl.c +++ b/vl.c @@ -3652,6 +3652,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;