From ebefeeadefe37eb7fa24340e27dbb2cc4a0c19e2 Mon Sep 17 00:00:00 2001
From: Kostiantyn Kalynovskyi <kkalynovskyi@mirantis.com>
Date: Fri, 10 Apr 2020 12:15:08 -0500
Subject: [PATCH] Fix console logs for libvirt hosts

This commit adds parameters to start command line that would allow
console logs to be written into files on host OS when running resulting
images on top of libvirt.

Change-Id: Icc83e45c27876a2a36729b92f69ccbd59dbf24e4
Relates-To: #167
---
 debian-isogen/files/grub.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian-isogen/files/grub.conf b/debian-isogen/files/grub.conf
index 9718d82..c08ff9e 100644
--- a/debian-isogen/files/grub.conf
+++ b/debian-isogen/files/grub.conf
@@ -6,6 +6,6 @@ set default="0"
 set timeout=1
 
 menuentry "Debian Live" {
-    linux /vmlinuz boot=live quiet nomodeset ip=frommedia overlay-size=70%
+    linux /vmlinuz boot=live nomodeset ip=frommedia gfxpayload=text overlay-size=70% cpu_init_udelay=10000 console=ttyS0,115200 verbose
     initrd /initrd
 }