summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-06-18 16:06:22 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-06-18 16:15:44 +0200
commit249e1e6c2d48237221d87485cafd179d46082361 (patch)
tree7996bded20b939b76d87d6a3365beb25facb244a /perl-install/fs
parent45f66a9b8d156534d9af155d48d0c7c96b6cac81 (diff)
downloaddrakx-249e1e6c2d48237221d87485cafd179d46082361.tar
drakx-249e1e6c2d48237221d87485cafd179d46082361.tar.gz
drakx-249e1e6c2d48237221d87485cafd179d46082361.tar.bz2
drakx-249e1e6c2d48237221d87485cafd179d46082361.tar.xz
drakx-249e1e6c2d48237221d87485cafd179d46082361.zip
add a failsafe for ESP tagging
sometimes we end with bogus 'fat32' fs
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/type.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index f4ca32238..b8262b30e 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -293,7 +293,7 @@ sub true_local_fs_types() { qw(btrfs ext3 ext2 ext4 reiserfs xfs jfs) }
sub isEmpty { !$_[0]{fs_type} && $_[0]{pt_type} == 0 }
sub isBIOS_GRUB { $_[0]{pt_type} == 'BIOS_GRUB' }
-sub isESP { $_[0]{pt_type} == 0xef && $_[0]{fs_type} eq 'vfat' }
+sub isESP { $_[0]{pt_type} == 0xef && member($_[0]{fs_type}, qw(fat32 vfat)) }
sub isExtended { $_[0]{pt_type} == 5 || $_[0]{pt_type} == 0xf || $_[0]{pt_type} == 0x85 }
sub isRawLVM { $_[0]{pt_type} == 0x8e || $_[0]{type_name} eq 'Linux Logical Volume Manager' }
sub isRawRAID { $_[0]{pt_type} == 0xfd || $_[0]{type_name} eq 'Linux RAID' }