From 5afa0c631d902f52e06575cb691df27ca0f0b2ed Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Wed, 9 Jan 2013 16:31:49 -0800 Subject: [PATCH] livemedia-creator: don't pass console=ttyS0 passing console=ttyS0 makes the virt hang until there is input. Remove it and now it will run unattended in text mode. --- src/sbin/livemedia-creator | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index 2605bbd9..f80ad000 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -284,8 +284,6 @@ class VirtualInstall( object ): extra_args += " "+kernel_args if iso.liveos: extra_args += " stage2=live:CDLABEL={0}".format(udev_escape(iso.label)) - if not vnc: - extra_args += " console=ttyS0" cmd.append("--extra-args") cmd.append(extra_args)