Please help to review the patch, thanks. Fix error in installation to extended partition (bnc#750897) - add grub2-skip-fs-probe-for-extended-partition.patch OBS-URL: https://build.opensuse.org/request/show/108604 OBS-URL: https://build.opensuse.org/package/show/Base:System/perl-Bootloader?expand=0&rev=51
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
Index: perl-Bootloader-0.6.0/src/Core/GRUB2.pm
|
|
===================================================================
|
|
--- perl-Bootloader-0.6.0.orig/src/Core/GRUB2.pm
|
|
+++ perl-Bootloader-0.6.0/src/Core/GRUB2.pm
|
|
@@ -655,6 +655,7 @@ Returns undef on fail, defined nonzero v
|
|
# boolean InitializeBootloader ()
|
|
sub InitializeBootloader {
|
|
my $self = shift;
|
|
+ my %glob = %{$self->{"global"}};
|
|
my $file = Bootloader::Path::Grub2_installdevice();
|
|
my $files_ref = $self->ReadFiles ([$file,]);
|
|
|
|
@@ -663,6 +664,13 @@ sub InitializeBootloader {
|
|
return undef;
|
|
}
|
|
|
|
+ my $install_opts = "--force";
|
|
+ my $skip_fs_probe = delete $glob{"boot_extended"};
|
|
+
|
|
+ if (defined $skip_fs_probe and $skip_fs_probe eq "true") {
|
|
+ $install_opts .= " --skip-fs-probe ";
|
|
+ }
|
|
+
|
|
my @devices = @{$files_ref->{$file} || []};
|
|
|
|
# Hmm .. grub2-install must has been run before
|
|
@@ -679,7 +687,7 @@ sub InitializeBootloader {
|
|
# the tradeoff is we can't capture errors
|
|
# only patch grub2 package is possible way
|
|
# to get around this problem
|
|
- "/usr/sbin/grub2-install --force $dev",
|
|
+ "/usr/sbin/grub2-install $install_opts $dev",
|
|
"/var/log/YaST2/y2log_bootloader"
|
|
);
|
|
|