From bb6c8a9c0b00b9a8eea7648dc89309769fece915 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 16 Nov 2004 16:49:38 +0000 Subject: empty partition table means sectors #0 and #1 are zeroes, not simply sector #0 (this gives a chance to raw_lvm_PV which has its magic on sector #1) --- perl-install/partition_table/empty.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/partition_table/empty.pm b/perl-install/partition_table/empty.pm index 596088619..ac02b2bb6 100644 --- a/perl-install/partition_table/empty.pm +++ b/perl-install/partition_table/empty.pm @@ -25,8 +25,8 @@ sub read($$) { 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}"; + sysread $F, $tmp, 1024 or die "error reading magic number on disk $hd->{device}"; + $tmp eq substr($tmp, 0, 1) x 1024 or die "bad magic number on disk $hd->{device}"; partition_table::raw::zero_MBR($hd); -- cgit v1.2.1