diff options
| author | Mystery Man <unknown@mandriva.org> | 2002-07-23 11:21:56 +0000 |
|---|---|---|
| committer | Mystery Man <unknown@mandriva.org> | 2002-07-23 11:21:56 +0000 |
| commit | 882ed9f801f347b87e162777b296d5be79b8b7ba (patch) | |
| tree | b3ee4e9e881f5bda8d243626aac2bea772f25e68 /perl-install/partition_table/empty.pm | |
| parent | 127a73d935d78af53d3dadd05d4636f6b717976d (diff) | |
| download | drakx-882ed9f801f347b87e162777b296d5be79b8b7ba.tar drakx-882ed9f801f347b87e162777b296d5be79b8b7ba.tar.gz drakx-882ed9f801f347b87e162777b296d5be79b8b7ba.tar.bz2 drakx-882ed9f801f347b87e162777b296d5be79b8b7ba.tar.xz drakx-882ed9f801f347b87e162777b296d5be79b8b7ba.zip | |
This commit was manufactured by cvs2svn to create tag 'V1_1_8_9mdk'.V1_1_8_9mdk
Diffstat (limited to 'perl-install/partition_table/empty.pm')
| -rw-r--r-- | perl-install/partition_table/empty.pm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/perl-install/partition_table/empty.pm b/perl-install/partition_table/empty.pm deleted file mode 100644 index e90991684..000000000 --- a/perl-install/partition_table/empty.pm +++ /dev/null @@ -1,36 +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; - - 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, 512 or die "error reading magic number on disk $hd->{device}"; - $tmp eq substr($tmp, 0, 1) x 512 or die "bad magic number on disk $hd->{device}"; - - partition_table::raw::zero_MBR($hd); - - $hd->{primary}{raw}; -} - -1; |
