diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-09 11:57:55 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-11 09:39:44 +0200 |
commit | 1b96be96d399303bcfa8d0f6c4920880848dac77 (patch) | |
tree | 6cea037cfd0c44e014a19e46966be65c1d3bdc26 /perl-install/fs/partitioning_wizard.pm | |
parent | 72836d6f7cf216e405db6e6675e03ebda63b0655 (diff) | |
download | drakx-1b96be96d399303bcfa8d0f6c4920880848dac77.tar drakx-1b96be96d399303bcfa8d0f6c4920880848dac77.tar.gz drakx-1b96be96d399303bcfa8d0f6c4920880848dac77.tar.bz2 drakx-1b96be96d399303bcfa8d0f6c4920880848dac77.tar.xz drakx-1b96be96d399303bcfa8d0f6c4920880848dac77.zip |
add a GRUB_BIOS partitions if needed (mga#18656)
Diffstat (limited to 'perl-install/fs/partitioning_wizard.pm')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index d04a5bba3..82f03d24d 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -77,6 +77,11 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return; $in->ask_warn('', N("You must have a ESP FAT32 partition mounted in /boot/EFI")); $ok = ''; } + } else { + if (!fs::any::is_boot_bios_part_needed($all_hds, $fstab)) { + $in->ask_warn('', N("You must have a Boot BIOS partition")); + $ok = ''; + } } } until $ok; 1; |