diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-16 16:49:38 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-16 16:49:38 +0000 |
commit | bb6c8a9c0b00b9a8eea7648dc89309769fece915 (patch) | |
tree | 5678f605a94a9399385c3f2ac678ad9f26e8f8d2 | |
parent | 57cb518585e76d8ae16f0acd62b6ed13f17c5fed (diff) | |
download | drakx-bb6c8a9c0b00b9a8eea7648dc89309769fece915.tar drakx-bb6c8a9c0b00b9a8eea7648dc89309769fece915.tar.gz drakx-bb6c8a9c0b00b9a8eea7648dc89309769fece915.tar.bz2 drakx-bb6c8a9c0b00b9a8eea7648dc89309769fece915.tar.xz drakx-bb6c8a9c0b00b9a8eea7648dc89309769fece915.zip |
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)
-rw-r--r-- | perl-install/partition_table/empty.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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); |