[Bug 1135865] virtio error causes graphics to freeze in openQA test since kernel 5.1.x
http://bugzilla.suse.com/show_bug.cgi?id=1135865 http://bugzilla.suse.com/show_bug.cgi?id=1135865#c14 Oliver Kurz <okurz@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |IN_PROGRESS --- Comment #14 from Oliver Kurz <okurz@suse.com> --- As discussed with sndirsch taking the bug to adjust the openQA tests. The code change I did: ``` diff --git a/lib/bootloader_setup.pm b/lib/bootloader_setup.pm index 8bec28900..6da0678d2 100644 --- a/lib/bootloader_setup.pm +++ b/lib/bootloader_setup.pm @@ -385,7 +385,7 @@ sub bootmenu_default_params { # gfxpayload variable replaced vga option in grub2 if (!is_jeos && !is_caasp && (check_var('ARCH', 'i586') || check_var('ARCH', 'x86_64'))) { push @params, "vga=791"; - if (check_var("INSTALL_TO_OTHERS", 1) || !$args{pxe}) { + if (check_var('QEMUVGA', 'cirrus')) { push @params, "video=1024x768-16"; } else { push @params, "xvideo=1024x768"; ``` which I see as a cleaner way but might be disruptive. I will check how that works out in different environments. -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com