diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-12 11:10:25 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-12 11:10:25 +0200 |
commit | 0f01aefe04cef0d8efe8728d3b3b87484ddf3075 (patch) | |
tree | 0af94880c6a86af1977019d3697077cd8c6224d3 /perl-install/fs | |
parent | dc8aa37e06e0bf6fc75e948326ec9aba1e2af2e4 (diff) | |
download | drakx-0f01aefe04cef0d8efe8728d3b3b87484ddf3075.tar drakx-0f01aefe04cef0d8efe8728d3b3b87484ddf3075.tar.gz drakx-0f01aefe04cef0d8efe8728d3b3b87484ddf3075.tar.bz2 drakx-0f01aefe04cef0d8efe8728d3b3b87484ddf3075.tar.xz drakx-0f01aefe04cef0d8efe8728d3b3b87484ddf3075.zip |
fix offering to create a GRUB_BIOS partition
...in custom mode (mga#18656)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index eeb81fec7..f4ca32238 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -26,7 +26,7 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type, 0x83 => 'btrfs', 'Journalised FS: Btrfs', (is_uefi() ? (0xef => 'vfat', 'EFI System Partition') : - ('BIOS_GRUB' => '', 'BIOS boot partition'), + ('BIOS_GRUB' => 'BIOS_GRUB', 'BIOS boot partition'), ), if_(arch() =~ /i.86|x86_64/, 0x83 => 'xfs', 'Journalised FS: XFS', |