Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/grub_utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use opensusebasetest qw(handle_uefi_boot_disk_workaround);
use testapi;
use Utils::Architectures;
use utils;
use version_utils qw(is_sle is_livecd is_bootloader_grub2_bls);
use version_utils qw(is_sle is_livecd is_bootloader_grub2_bls is_agama is_leap);
use bootloader_setup qw(stop_grub_timeout boot_into_snapshot);
use Utils::Backends;

Expand Down Expand Up @@ -62,6 +62,7 @@ Due to pre-installation setup, qemu boot order is always booting from CD-ROM.

sub handle_installer_medium_bootup {
return unless (check_var("BOOTFROM", "d") || (get_var('UEFI') && get_var('USBBOOT')));
return if is_agama && !(is_sle || is_leap);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will likely change soon™ too - but for now ok

assert_screen 'inst-bootmenu', 180;

# Layout of live is different from installation media
Expand Down