summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-02 08:10:53 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-02 08:10:53 +0000
commit4754dfeb3a7869aac8cc21e5049fddb010cc0ecc (patch)
treee9c891b1e13374833e97c02c794d28a2c5db341b /perl-install/fsedit.pm
parentcdf5a794b4869f7e9b598eb32eb3662f4842263f (diff)
downloaddrakx-backup-do-not-use-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar
drakx-backup-do-not-use-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.gz
drakx-backup-do-not-use-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.bz2
drakx-backup-do-not-use-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.xz
drakx-backup-do-not-use-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.zip
fsedit::check_fs_type() is now fs::type::check()
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 39797a773..26051f800 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -516,13 +516,6 @@ sub get_root_ {
}
sub get_root { &get_root_ || {} }
-#- do this before modifying $part->{fs_type}
-sub check_fs_type {
- my ($fs_type, $_hd, $part) = @_;
- $fs_type eq "jfs" && $part->{size} < 16 << 11 and die N("You can't use JFS for partitions smaller than 16MB");
- $fs_type eq "reiserfs" && $part->{size} < 32 << 11 and die N("You can't use ReiserFS for partitions smaller than 32MB");
-}
-
#- you can do this before modifying $part->{mntpoint}
#- so $part->{mntpoint} should not be used here, use $mntpoint instead
sub check_mntpoint {
@@ -752,7 +745,7 @@ sub move {
sub change_type {
my ($type, $hd, $part) = @_;
$type->{pt_type} != $part->{pt_type} || $type->{fs_type} ne $part->{fs_type} or return;
- check_fs_type($type->{fs_type}, $hd, $part);
+ fs::type::check($type->{fs_type}, $hd, $part);
$hd->{isDirty} = 1;
$part->{mntpoint} = '' if isSwap($part) && $part->{mntpoint} eq "swap";
$part->{mntpoint} = '' if isRawLVM($type) || isRawRAID($type);