diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-02-25 21:01:34 +0000 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-04-04 20:03:30 +0200 |
commit | 6753abe33da73245f22908724f671334de56cd09 (patch) | |
tree | 4c3f71b54fc11612e3eb0bb47aacd9b4e8495598 /perl-install/install | |
parent | 061f1e2f459db1ed0e1ddd4f332cf270626e32c3 (diff) | |
download | drakx-6753abe33da73245f22908724f671334de56cd09.tar drakx-6753abe33da73245f22908724f671334de56cd09.tar.gz drakx-6753abe33da73245f22908724f671334de56cd09.tar.bz2 drakx-6753abe33da73245f22908724f671334de56cd09.tar.xz drakx-6753abe33da73245f22908724f671334de56cd09.zip |
Don't require a BIOS boot partition when performing an upgrade (mga#20338)
If we are upgrading a system on a GPT disk and it doesn't currently
have a BIOS boot partition, the old system must be using a legacy
bootloader (e.g. grub). We support the continued use of legacy
bootloaders in an upgrade, so there is no need to insist on a BIOS
boot partition in this case.
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index f25ca4551..7d3a5a67f 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -201,7 +201,7 @@ sub doPartitionDisksAfter { $part->{isMounted} = 1; } - fs::any::check_hds_boot_and_root($o->{all_hds}, $o->{fstab}, $o->{match_all_hardware}); + fs::any::check_hds_boot_and_root($o->{all_hds}, $o->{fstab}, $o->{isUpgrade}, $o->{match_all_hardware}); if ($o->{partitioning}{use_existing_root}) { #- ensure those partitions are mounted so that they are not proposed in choosePartitionsToFormat |