aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/drminfo/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/drminfo/__init__.py b/tests/drminfo/__init__.py
index c147709..c37ade6 100644
--- a/tests/drminfo/__init__.py
+++ b/tests/drminfo/__init__.py
@@ -130,8 +130,9 @@ class TestDRM(avocado.Test):
cmdline += " \"%s\" \"%s\"" % (self.initrd, kversion)
run(cmdline)
- def boot_gfx_vm(self, vga, display = None, vm = None, incoming = None):
- append = "console=ttyS0 rd.shell"
+ def boot_gfx_vm(self, vga, display = None, vm = None, incoming = None, append = ""):
+ append += " console=ttyS0"
+ append += " rd.shell"
self.log.info("### boot kernel with display device \"%s\"" % vga)
if vm is None: