diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-03 20:59:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-03 20:59:16 +0000 |
commit | 10e4ad27deb56e8df7c68b9fec4b8789d80068bf (patch) | |
tree | d2ebe26b92aa5969997d3749d94422d4a2be19c7 /perl-install/fs.pm | |
parent | 10c54b8c2b4628bd791f5616c5d5713acc0bb85a (diff) | |
download | drakx-backup-do-not-use-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar drakx-backup-do-not-use-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.gz drakx-backup-do-not-use-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.bz2 drakx-backup-do-not-use-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.xz drakx-backup-do-not-use-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.zip |
replace isJfs/isXfs/... with isThisFs("jfs"
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 8a2576d40..167b0b383 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -131,17 +131,17 @@ sub real_format_part { if (isExt2($part)) { push @options, "-F" if isLoopback($part); format_ext2($part->{device}, @options); - } elsif (isReiserfs($part)) { + } elsif (isThisFs("reiserfs", $part)) { format_reiserfs($part->{device}, @options, if_(c::kernel_version() =~ /^\Q2.2/, "-v", "1")); - } elsif (isXfs($part)) { + } elsif (isThisFs("xfs", $part)) { format_xfs($part->{device}, @options); - } elsif (isJfs($part)) { + } elsif (isThisFs("jfs", $part)) { format_jfs($part->{device}, @options); } elsif (isDos($part)) { format_dos($part->{device}, @options); } elsif (isWin($part)) { format_dos($part->{device}, @options, '-F', 32); - } elsif (isHFS($part)) { + } elsif (isThisFs('hfs', $part)) { format_hfs($part->{device}, @options, '-l', "Untitled"); } elsif (isAppleBootstrap($part)) { format_hfs($part->{device}, @options, '-l', "bootstrap"); @@ -418,7 +418,7 @@ sub write_fstab($;$$@) { isNfs($_) and $dir = '', $options = $_->{options} || $format_options->('ro,nosuid,rsize=8192,wsize=8192', 'iocharset'); isFat($_) and $options = $_->{options} || $format_options->("user,exec,umask=0", 'codepage', 'iocharset'); - #isReiserfs($_) && $_ == fsedit::get_root($fstab, 'boot') and add_options($options, "notail"); + #isThisFs("reiserfs", $_) && $_ == fsedit::get_root($fstab, 'boot') and add_options($options, "notail"); my $dev = isLoopback($_) ? ($_->{mntpoint} eq '/' ? "/initrd/loopfs$_->{loopback_file}" : loopback::file($_)) : |