From 86237df0ca5fbcb73bca789f876c9f72bfd49100 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 6 Sep 2004 06:53:57 +0000 Subject: detect linux software raid magic --- perl-install/fsedit.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'perl-install/fsedit.pm') diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index ddb848e32..3d2565bca 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -63,6 +63,8 @@ sub raids { my @parts = fs::get::hds_fstab(@$hds); my @l = grep { isRawRAID($_) } @parts or return []; + + log::l("looking for raids in " . join(' ', map { $_->{device} } @l)); require raid; raid::detect_during_install(@l) if $::isInstall; @@ -183,8 +185,13 @@ Do you agree to lose all the partitions? # checking the magic of the filesystem, don't rely on pt_type foreach (grep { member($_->{fs_type}, 'vfat', 'ntfs', 'ext2') || $_->{pt_type} == 0x100 } @parts) { - if (my $fs_type = fs::type::fs_type_from_magic($_)) { - $_->{fs_type} = $fs_type; + if (my $type = fs::type::type_subpart_from_magic($_)) { + if ($type->{fs_type}) { + #- keep {pt_type} + $_->{fs_type} = $fs_type; + } else { + put_in_hash($_, $type); + } } else { $_->{bad_fs_type_magic} = 1; } -- cgit v1.2.1