Skip to content

Commit 1c0acf8

Browse files
committed
Dualboot is supported with systemd-boot
1 parent 405fa95 commit 1c0acf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/version_utils.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ sub get_bootloader {
902902
return $bootloader if $bootloader;
903903

904904
return 'wsl' if is_wsl;
905-
return 'grub2' if is_dualboot;
905+
# return 'grub2' if is_dualboot;
906906
return 'grub2' if is_sle || is_leap || is_sle_micro;
907907
return 'grub2' if !check_var('UEFI', 1);
908908
return 'grub2' if (get_var('FLAVOR', '') =~ /(MicroOS-SelfInstall|MicroOS-Image|Image-ContainerHost|JeOS-for-kvm-and-xen|JeOS-for-OpenStack-Cloud)$/);

t/01_version_utils.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ subtest 'bootloader_tests' => sub {
189189
ok get_default_bootloader eq 'systemd-boot', "Tumbleweed on UEFI is systemd-boot";
190190

191191
set_var('DUALBOOT', 1);
192-
ok get_default_bootloader eq 'grub2', "Tumbleweed on UEFI with DUALBOOT is grub2";
192+
ok get_default_bootloader eq 'systemd-boot', "Tumbleweed on UEFI with DUALBOOT is systemd-boot";
193193
set_var('DUALBOOT', 0);
194194

195195
set_var('VERSION', 'Slowroll');

0 commit comments

Comments
 (0)