package partition_table_raw; use diagnostics; use strict; use common qw(:common :system :file); use devices; use c; my @fields = qw(active start_head start_sec start_cyl type end_head end_sec end_cyl start size); my $format = "C8 I2"; my $magic = "\x55\xAA"; my $nb_primary = 4; my $offset = $common::SECTORSIZE - length($magic) - $nb_primary * common::psizeof($format); my @MBR_signatures = ( [ 'empty', 0, "\0\0\0\0" ], [ 'lilo', 0x6, "LILO" ], [ 'osbs', 0x2, "OSBS" ], #- http://www.prz.tu-berlin.de/~wolf/os-bs.html [ 'pqmagic', 0xef, "PQV" ], [ 'DocsBoot', 0x148, 'DocsBoot' ], [ 'system_commander', 0x1ad, "SYSCMNDRSYS" ], [ 'dos', 0xa0, "\x25\x03\x4E\x02\xCD\x13" ], [ 'dos', 0x60, "\xBB\x00\x7C\xB8\x01\x02\x57\xCD\x13\x5F\x73\x0C\x33\xC0\xCD\x13" ], #- nt's [ 'dummy', 0xAC, "\x0E\xB3\x07\x56\xCD\x10\x5E\xEB" ], #- caldera? [ 'ranish', 0x100, "\x6A\x10\xB4\x42\x8B\xF4\xCD\x13\x8B\xE5\x73" ], ); sub typeOfMBR($) { typeFromMagic(devices::make($_[0]), @MBR_signatures) } sub typeOfMBR_($) { typeFromMagic($_[0], @MBR_signatures) } sub compute_CHS($$) { my ($hd, $e) = @_; my @l = qw(cyl head sec); @$e{map { "start_$_" } @l} = $e->{start} || $e->{type} ? CHS2rawCHS(sector2CHS($hd, $e->{start})) : (0,0,0); @$e{map { "end_$_" } @l} = $e->{start} || $e->{type} ? CHS2rawCHS(sector2CHS($hd, $e->{start} + $e->{size} - 1)) : (0,0,0); 1; } sub CHS2rawCHS($$$) { my ($c, $h, $s) = @_; $c = min($c, 1023); #- no way to have a #cylinder >= 1024 ($c & 0xff, $h, $s | ($c >> 2 & 0xc0)); } # returns (cylinder, head, sector) sub sector2CHS($$) { my ($hd, $start) = @_; my ($s, $h); ($start, $s) = divide($start, $hd->{geom}{sectors}); ($start, $h) = divide($start, $hd->{geom}{heads}); ($start, $h, $s + 1); } sub get_geometry($) { my ($dev) = @_; my $g = ""; local *F; sysopen F, $dev, 0 or return; ioctl(F, c::HDIO_GETGEO(), $g) or return; my %geom; @geom{qw(heads sectors cylinders start)} = unpack "CCSL", $g; { geom => \%geom, totalsectors => $geom{heads} * $geom{sectors} * $geom{cylinders} }; } sub openit($$;$) { sysopen $_[1], $_[0]{file}, $_[2] || 0; } # cause kernel to re-read partition table sub kernel_read($) { my ($hd) = @_; local *F; openit($hd, *F) or return 0; $hd->{rebootNeeded} = !ioctl(F, c::BLKRRPART(), 0); } sub read($$) { my ($hd, $sector) = @_; my $tmp; local *F; openit($hd, *F) or return; c::lseek_sector(fileno(F), $sector, $offset) or die "reading of partition in sector $sector failed"; my @pt = map { sysread F, $tmp, psizeof($format) or return "error while reading partition table in sector $sector"; my %h; @h{@fields} = unpack $format, $tmp; \%h; } (1..$nb_primary); #- check magic number sysread F, $tmp, length $magic or die "error reading magic number"; $tmp eq $magic or die "bad magic number"; [ @pt ]; } # write the partition table (and extended ones) # for each entry, it uses fields: start, size, type, active sub write($$$) { my ($hd, $sector, $pt) = @_; local *F; openit($hd, *F, 2) or die "error opening device $hd->{device} for writing"; c::lseek_sector(fileno(F), $sector, $offset) or return 0; @$pt == $nb_primary or die "partition table does not have $nb_primary entries"; foreach (@$pt) { compute_CHS($hd, $_); local $_->{start} = $_->{local_start} || 0; $_->{active} ||= 0; $_->{type} ||= 0; $_->{size} ||= 0; #- for no warning syswrite F, pack($format, @$_{@fields}), psizeof($format) or return 0; } syswrite F, $magic, length $magic or return 0; 1; } sub clear_raw { { raw => [ ({}) x $nb_primary ] } } sub zero_MBR($) { my ($hd) = @_; $hd->{isDirty} = $hd->{needKernelReread} = 1; $hd->{primary} = clear_raw(); delete $hd->{extended}; } 1; lin/rescue-systemd Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/drakxtools.spec
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2002-08-22 19:25:39 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2002-08-22 19:25:39 +0000
commit78dd50cfca00bb12eaad042bda57c7a0d1b6f613 (patch)
tree257367f2da25a8b7f0a5ce9b3af9f623afc19889 /perl-install/drakxtools.spec
parent6eefaf34f4876bfd9f4326f230533cfb772aeb70 (diff)
downloaddrakx-78dd50cfca00bb12eaad042bda57c7a0d1b6f613.tar
drakx-78dd50cfca00bb12eaad042bda57c7a0d1b6f613.tar.gz
drakx-78dd50cfca00bb12eaad042bda57c7a0d1b6f613.tar.bz2
drakx-78dd50cfca00bb12eaad042bda57c7a0d1b6f613.tar.xz
drakx-78dd50cfca00bb12eaad042bda57c7a0d1b6f613.zip
1.1.9-16mdk
Diffstat (limited to 'perl-install/drakxtools.spec')
-rw-r--r--perl-install/drakxtools.spec5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/drakxtools.spec b/perl-install/drakxtools.spec
index 5b848b396..f9b160b82 100644
--- a/perl-install/drakxtools.spec
+++ b/perl-install/drakxtools.spec
@@ -1,7 +1,7 @@
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name: drakxtools
Version: 1.1.9
-Release: 15mdk
+Release: 16mdk
Url: http://www.linux-mandrake.com/en/drakx.php3
Source0: %name-%version.tar.bz2
License: GPL
@@ -262,6 +262,9 @@ file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && \
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http
%changelog
+* Thu Aug 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-16mdk
+- snapshot (for rpmdrake)
+
* Wed Aug 21 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-15mdk
- add draksound
- mousedrake: default usbmouse link to input/mice rather than