summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-03-18 14:49:18 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-03-18 17:15:30 +0100
commitf954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa (patch)
treec013b80900d7c289f3cc92b8b44a313c1c7de8b7 /perl-install/fs
parent1706d84b42c2c5f19556c218aea3729352738e93 (diff)
downloaddrakx-f954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa.tar
drakx-f954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa.tar.gz
drakx-f954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa.tar.bz2
drakx-f954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa.tar.xz
drakx-f954b3ee3754cafc4ef0d0d8d55eb181e6b66aaa.zip
mark nilfs2 as somewhat available
Not a true FS as it doesn't support extended attributes and thus fails to install packages (mga#26354) but we want to be able to eg: inspect it ("View" in diskrake)
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 b80340dfd..83ca26ddc 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -353,7 +353,7 @@ Is it another OS that linux can access its filesystem
=cut
-sub isOtherAvailableFS { isESP($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs_type}, 'ufs', 'hfs', 'iso9660') }
+sub isOtherAvailableFS { isESP($_[0]) || isFat_or_NTFS($_[0]) || member($_[0]{fs_type}, 'ufs', 'hfs', 'iso9660', 'nilfs2') }
sub isMountableRW { (isTrueFS($_[0]) || isOtherAvailableFS($_[0])) && $_[0]{fs_type} ne 'ntfs' }
sub cannotBeMountable {
my ($part) = @_;