diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/type.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index bfc10441a..d77eef107 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,7 @@ - recognize new kernel 5.2 - 5.4 drivers - diskdrake: o add support for F2FS + o enable to inspect NILFS2 formated partitions o enable to resize NILFS2 o enhanced internal doc o make reformating nilfs2 fses to work 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) = @_; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 10124562b..f38d5270c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - adjust debug build to current python - partitioning: + o enable to inspect NILFS2 formated partitions o enable to install on F2FS formated partitions o enable to resize NILFS2 o enable to resize XFS during install |