summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/partitioning_wizard.pm
diff options
context:
space:
mode:
authorMartin Whitaker <mageia@martin-whitaker.me.uk>2017-02-05 00:03:41 +0000
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2017-02-25 11:47:03 +0000
commitccb41194a4e1cca2b162b8221a506a6768e52c6d (patch)
tree1a54052913dfffa80939576bc2abdf100ffb674b /perl-install/fs/partitioning_wizard.pm
parentdaf8670c08e54ac64407f7f209aaf9b460abdcc6 (diff)
downloaddrakx-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.pm2
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 = '';
}