diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-01-08 08:33:45 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-01-08 08:33:45 +0100 |
commit | 7d4e1990d80ab9059ed02246ad2b290164aa3378 (patch) | |
tree | 84b0415675f9965554bd7345d449608e577a8a94 | |
parent | 15ccf43a20ff39f3bce3ad524e34d28216135afb (diff) | |
download | drminfo-7d4e1990d80ab9059ed02246ad2b290164aa3378.tar.gz |
fix dracut generator
-rw-r--r-- | tests/drminfo/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/drminfo/__init__.py b/tests/drminfo/__init__.py index 769f00f..429ac41 100644 --- a/tests/drminfo/__init__.py +++ b/tests/drminfo/__init__.py @@ -120,6 +120,7 @@ class TestDRM(avocado.Test): self.log.info("### create initrd for %s" % kversion) cmdline = "dracut" + cmdline += " --no-hostonly" cmdline += " --force" if not kmoddir is None: cmdline += " --kmoddir \"%s\"" % kmoddir @@ -133,6 +134,7 @@ class TestDRM(avocado.Test): def boot_gfx_vm(self, vga, display = None, vm = None, incoming = None, iommu = False, append = ""): append += " console=ttyS0" append += " rd.shell" + append += " rd.break" self.log.info("### boot kernel with display device \"%s\"" % vga) if vm is None: |