diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 15:07:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 15:07:47 +0000 |
commit | 16ae57ffe06389dccdf2b64570875be154d34805 (patch) | |
tree | 69b7e2cf71a82521ff50f15afae8b4b5c2f7c427 /perl-install/fs | |
parent | dd8b81baddec01d99d243c1b59cc93215e1aa754 (diff) | |
download | drakx-16ae57ffe06389dccdf2b64570875be154d34805.tar drakx-16ae57ffe06389dccdf2b64570875be154d34805.tar.gz drakx-16ae57ffe06389dccdf2b64570875be154d34805.tar.bz2 drakx-16ae57ffe06389dccdf2b64570875be154d34805.tar.xz drakx-16ae57ffe06389dccdf2b64570875be154d34805.zip |
add iso9660 in isOtherAvailableFS
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 70779f85d..caada6dfb 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -324,7 +324,7 @@ sub isHiddenMacPart { defined $_[0]{isMap} } sub isTrueFS { isTrueLocalFS($_[0]) || member($_[0]{fs_type}, qw(nfs)) } sub isTrueLocalFS { member($_[0]{fs_type}, qw(ext2 reiserfs xfs jfs ext3)) } -sub isOtherAvailableFS { isEfi($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs_type}, 'ufs', 'hfs') } #- other OS that linux can access its filesystem +sub isOtherAvailableFS { isEfi($_[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 isNonMountable { my ($part) = @_; |