summaryrefslogtreecommitdiffstats
path: root/mdkonline.pm
Commit message (Expand)AuthorAgeFilesLines
* more robust to bogus answer to get the keyFrederic Lepied2004-10-111-1/+1
* - fix functions name changesDaouda Lo2004-09-301-23/+19
* - version systemDaouda Lo2004-09-301-3/+6
* - test for backward compatibility (release version)Daouda Lo2004-09-301-1/+2
* - pass string to mdkonline directlDaouda Lo2004-09-291-1/+1
* - syncDaouda Lo2004-09-271-1/+2
* check_valid_email in mdkonlineDaouda Lo2004-09-271-0/+6
* - move shared functions in mdkonine.pmDaouda Lo2004-09-271-1/+76
* - put correct passDaouda Lo2004-09-201-2/+2
* - added hw_db client for hardware uploadDaouda Lo2004-09-201-5/+5
* - fixed typo in outputDaouda Lo2004-09-101-1/+1
* perl_checker cleanupsThierry Vignaud2004-08-091-13/+11
* rewrite big chunks of code, added mdkonline.pmDaouda Lo2004-07-091-0/+132
a88937304b32ba76e9.tar.gz
drakx-34ac8b909e949012b64706a88937304b32ba76e9.tar.bz2
drakx-34ac8b909e949012b64706a88937304b32ba76e9.tar.xz
drakx-34ac8b909e949012b64706a88937304b32ba76e9.zip
(isEfi) rename as isESP()
as it really checks for ESP System Partition
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/fs/type.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 29f9a6f3b..be47cf00c 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -291,7 +291,7 @@ sub defaultFS() { 'ext4' }
sub true_local_fs_types() { qw(btrfs ext3 ext2 ext4 reiserfs xfs jfs) }
sub isEmpty { !$_[0]{fs_type} && $_[0]{pt_type} == 0 }
-sub isEfi { $_[0]{pt_type} == 0xef }
+sub isESP { $_[0]{pt_type} == 0xef }
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' }
@@ -313,7 +313,7 @@ sub isRecovery {
sub isTrueFS { isTrueLocalFS($_[0]) || member($_[0]{fs_type}, qw(nfs)) }
sub isTrueLocalFS { member($_[0]{fs_type}, true_local_fs_types()) }
-sub isOtherAvailableFS { isEfi($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs_type}, 'ufs', 'hfs', 'iso9660') } #- other OS that linux can access its filesystem
+sub isOtherAvailableFS { isESP($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs_type}, 'ufs', 'hfs', 'iso9660') } #- other OS that linux can access its filesystem
sub isMountableRW { (isTrueFS($_[0]) || isOtherAvailableFS($_[0])) && $_[0]{fs_type} ne 'ntfs' }
sub cannotBeMountable {
my ($part) = @_;