summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table/dos.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-09-17 10:33:54 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-09-17 10:33:54 +0000
commit1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4 (patch)
treef7c69b2ee55ed40ab4f6c0fa4e5e5f26b3239f84 /perl-install/partition_table/dos.pm
parent69617c268cef38da90a2a40dd8ec3c2b385a09e9 (diff)
downloaddrakx-1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4.tar
drakx-1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4.tar.gz
drakx-1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4.tar.bz2
drakx-1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4.tar.xz
drakx-1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4.zip
try to get geometry from EDD
Diffstat (limited to 'perl-install/partition_table/dos.pm')
-rw-r--r--perl-install/partition_table/dos.pm17
1 files changed, 16 insertions, 1 deletions
diff --git a/perl-install/partition_table/dos.pm b/perl-install/partition_table/dos.pm
index 8c30e6558..8a24cec84 100644
--- a/perl-install/partition_table/dos.pm
+++ b/perl-install/partition_table/dos.pm
@@ -124,6 +124,21 @@ sub guess_geometry_from_partition_table {
$geom;
}
+sub geometry_from_edd {
+ my ($hd, $edd_dir) = @_;
+
+ my $geom = { sectors => 0 + cat_("$edd_dir/legacy_sectors_per_track"),
+ heads => 1 + cat_("$edd_dir/legacy_max_head"),
+ from_edd => 1 };
+ partition_table::raw::compute_nb_cylinders($geom, $hd->{totalsectors});
+
+ log::l("geometry_from_edd $hd->{device} $hd->{volume_id}: " . geometry_to_string($geom));
+
+ member($geom->{heads}, @valid_nb_heads) && member($geom->{sectors}, @valid_nb_sectors)
+ && $geom;
+}
+
+
sub try_every_geometry {
my ($hd) = @_;
@@ -148,7 +163,7 @@ sub set_best_geometry_for_the_partition_table {
my $guessed_geom = guess_geometry_from_partition_table($hd);
if ($guessed_geom->{empty}) {
- log::l("$hd->{device}: would need looking at BIOS info to find out geometry");
+ log::l("$hd->{device}: would need looking at BIOS info to find out geometry") if !$hd->{geom}{from_edd};
return;
}
my $default_ok = is_geometry_valid_for_the_partition_table($hd, $hd->{geom}, 0);