diff options
author | Mystery Man <unknown@mandriva.org> | 2001-11-20 23:35:06 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2001-11-20 23:35:06 +0000 |
commit | 9f1dfb0e6b859cba0ebda5f945987ba6c24a596b (patch) | |
tree | d85d9819673c16e4753109862a2eeb9bfa775e7a /perl-install/partition_table_empty.pm | |
parent | dee901a3fde82083a630082f04c0139c73ba248f (diff) | |
download | drakx-topic/PCMCIA_CS_DISTRO.tar drakx-topic/PCMCIA_CS_DISTRO.tar.gz drakx-topic/PCMCIA_CS_DISTRO.tar.bz2 drakx-topic/PCMCIA_CS_DISTRO.tar.xz drakx-topic/PCMCIA_CS_DISTRO.zip |
This commit was manufactured by cvs2svn to create branchtopic/PCMCIA_CS_DISTRO
'PCMCIA_CS_DISTRO'.
Diffstat (limited to 'perl-install/partition_table_empty.pm')
-rw-r--r-- | perl-install/partition_table_empty.pm | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/perl-install/partition_table_empty.pm b/perl-install/partition_table_empty.pm deleted file mode 100644 index d460317f5..000000000 --- a/perl-install/partition_table_empty.pm +++ /dev/null @@ -1,38 +0,0 @@ -package partition_table_empty; # $Id$ - -#- 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; -use partition_table_raw; -use partition_table; -use c; - - -sub read($$) { - my ($hd, $sector) = @_; - my $tmp; - - my $magic = "\0" x 512; - - 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; |