package partition_table_empty; #- this is a mainly dummy partition table. If we find it's empty, we just call - #- zero_MBR which will take care of bless'ing us to the partition table type best #- suited use diagnostics; use strict; use vars qw(@ISA); @ISA = qw(partition_table_raw); use common qw(:common :system :file); use partition_table_raw; use partition_table; use c; sub read($$) { my ($hd, $sector) = @_; my $tmp; my $magic = "\0" x 256; local *F; partition_table_raw::openit($hd, *F) or die "failed to open device"; c::lseek_sector(fileno(F), $sector, 0) or die "reading of partition in sector $sector failed"; #- check magic number sysread F, $tmp, length $magic or die "error reading magic number"; $tmp eq $magic or die "bad magic number"; partition_table_raw::zero_MBR($hd); $hd->{primary}{raw}; } 1; mit();'> Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/share
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2001-11-19 18:17:33 +0000
committerPablo Saratxaga <pablo@mandriva.com>2001-11-19 18:17:33 +0000
commitda2756df0ac6b0b94791acd48db10ed1d7210a4d (patch)
tree6389bc5e5daee6ed0b3e13da6b90b283de42d2c5 /perl-install/share
parenta2c88ca2b3baeb419224ddb65f3ffde2cef27696 (diff)
downloaddrakx-da2756df0ac6b0b94791acd48db10ed1d7210a4d.tar
drakx-da2756df0ac6b0b94791acd48db10ed1d7210a4d.tar.gz
drakx-da2756df0ac6b0b94791acd48db10ed1d7210a4d.tar.bz2
drakx-da2756df0ac6b0b94791acd48db10ed1d7210a4d.tar.xz
drakx-da2756df0ac6b0b94791acd48db10ed1d7210a4d.zip
updated pot file
Diffstat (limited to 'perl-install/share')