diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:37:25 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:37:25 +0159 |
commit | ac25be0df4b079dbe65b88e89f51a6e5fd1dee39 (patch) | |
tree | 0bcc7abf975642ce8bfd3c9ed62996f09c37fb20 /perl-install/fs | |
parent | c1060c87f25482e565d28eb6fe59de9ef1a58fb8 (diff) | |
download | drakx-ac25be0df4b079dbe65b88e89f51a6e5fd1dee39.tar drakx-ac25be0df4b079dbe65b88e89f51a6e5fd1dee39.tar.gz drakx-ac25be0df4b079dbe65b88e89f51a6e5fd1dee39.tar.bz2 drakx-ac25be0df4b079dbe65b88e89f51a6e5fd1dee39.tar.xz drakx-ac25be0df4b079dbe65b88e89f51a6e5fd1dee39.zip |
expose ESP for efi systems
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index e4071e35c..81673b01f 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -32,6 +32,9 @@ if_(arch() =~ /i.86|x86_64/, 0x07 => 'ntfs-3g', 'NTFS-3G', 0x07 => 'ntfs', 'NTFS', ), +if_( is_uefi(), + 0xef => 'vfat', 'EFI System Partition (FAT-12/16/32)', +), ], non_fs_type => [ @@ -128,7 +131,9 @@ if_(arch() =~ /i.86|x86_64/, 0xe4 => '', 'SpeedStor (FAT-16)', 0xeb => 'befs', 'BeOS fs', 0xee => '', 'EFI GPT', - 0xef => 'vfat', 'EFI (FAT-12/16/32)', +if_( ! is_uefi(), + 0xef => 'vfat', 'EFI System Partition (FAT-12/16/32)', +), 0xf0 => '', 'Linux/PA-RISC boot', 0xf4 => '', 'SpeedStor (large part.)', 0xf2 => '', 'DOS secondary', |