diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-19 12:26:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-19 12:26:14 +0000 |
commit | f9ed643497904ff85d21828064d9fea115deeb0e (patch) | |
tree | 5c532fb2c6721a381c117057dd5aa846d1e9cb60 /perl-install/install_steps.pm | |
parent | 265c39221f89ffaf22b4d58d7dfe04a09871695a (diff) | |
download | drakx-f9ed643497904ff85d21828064d9fea115deeb0e.tar drakx-f9ed643497904ff85d21828064d9fea115deeb0e.tar.gz drakx-f9ed643497904ff85d21828064d9fea115deeb0e.tar.bz2 drakx-f9ed643497904ff85d21828064d9fea115deeb0e.tar.xz drakx-f9ed643497904ff85d21828064d9fea115deeb0e.zip |
- do not set type to ext2 when the type is ntfs
- set to ext3 instead of ext2
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 4ae4c9848..dd3ad5cda 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -211,8 +211,8 @@ sub ask_mntpoint_s { $m{$m} and die _("Duplicate mount point %s", $m); $m{$m} = 1; - #- in case the type does not correspond, force it to ext2 - $_->{type} = 0x83 if $m =~ m|^/| && !isFat($_) && !isTrueFS($_); + #- in case the type does not correspond, force it to ext3 + $_->{type} = 0x483 if $m =~ m|^/| && !isTrueFS($_) && !isOtherAvailableFS($_); } 1; } |