diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-02-05 00:03:41 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-02-25 11:47:03 +0000 |
commit | ccb41194a4e1cca2b162b8221a506a6768e52c6d (patch) | |
tree | 1a54052913dfffa80939576bc2abdf100ffb674b /perl-install/fs/partitioning_wizard.pm | |
parent | daf8670c08e54ac64407f7f209aaf9b460abdcc6 (diff) | |
download | drakx-ccb41194a4e1cca2b162b8221a506a6768e52c6d.tar drakx-ccb41194a4e1cca2b162b8221a506a6768e52c6d.tar.gz drakx-ccb41194a4e1cca2b162b8221a506a6768e52c6d.tar.bz2 drakx-ccb41194a4e1cca2b162b8221a506a6768e52c6d.tar.xz drakx-ccb41194a4e1cca2b162b8221a506a6768e52c6d.zip |
Allow a BIOS boot partition to be located on any disk (mga#20161).
This relaxes the rules in fs::any::is_boot_bios_part_needed to allow
the BIOS boot partition to be located on any disk, not just the disk
containing the root partition. It also ensures that a BIOS boot
partition is never forcibly required in a system with non-GPT disks.
Diffstat (limited to 'perl-install/fs/partitioning_wizard.pm')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 6158dd440..eef836c55 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -78,7 +78,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return; $ok = ''; } } else { - if (fs::any::is_boot_bios_part_needed($all_hds, \@fstab)) { + if (fs::any::is_boot_bios_part_needed($all_hds)) { $in->ask_warn('', N("You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. Please create one before continuing.")); $ok = ''; } |