File: fdgeo.pl

package info (click to toggle)
syslinux 2%3A4.02%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 23,804 kB
  • ctags: 71,027
  • sloc: ansic: 270,621; pascal: 9,631; asm: 9,089; perl: 3,492; makefile: 1,588; sh: 511; python: 266; xml: 39
file content (56 lines) | stat: -rwxr-xr-x 930 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/perl
#
# Try automatic generation of geometries
#

($k) = @ARGV;
$sec = int($k*2+0.5);

if ($sec < 320*2) {
    $c = 40;
    $h = 1;
    $type = 1;
} elsif ($sec < 640*2) {
    $c = 40;
    $h = 2;
    $type = 1;
} elsif ($sec < 1200*2) {
    $c = 80;
    $h = 2;
    $type = 3;
} elsif ($sec < 1440*2) {
    $c = 80;
    $h = 2;
    $type = 2;
} elsif ($sec < 2880*2) {
    $c = 80;
    $h = 2;
    $type = 4;
} elsif ($sec < 4096*2) {
    $c = 80;
    $h = 2;
    $type = 6;
} else {
    printf "%.1fK, %d sectors: ", $sec/2, $sec;
    print "Considered a hard disk\n";
    exit 2;
}

$ok = 0;
while ($c < 256) {
    $s = int($sec/($c*$h)+0.5);
    if ($s <= 63 && $sec == $c*$h*$s) {
	$ok = 1;
	last;
    }
    $c++;
}

printf "%.1fK, %d sectors: ", $sec/2, $sec;
if ($ok) {
    print "c=$c, h=$h, s=$s, type=$type\n";
    exit 0;
} else {
    print "No valid geometry found (MEMDISK will fake it)\n";
    exit 1;
}