diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-29 23:50:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-29 23:50:14 +0000 |
commit | 4d37bebbb47db98088c70d4d4395ca29cef35f8a (patch) | |
tree | 996d38b7735fa03a79be75615dbe6692916d0094 /perl-install/fsedit.pm | |
parent | 6de7bc2092b2c1c7c3bae2b4a7d0c8b59ce5e1d3 (diff) | |
download | drakx-backup-do-not-use-4d37bebbb47db98088c70d4d4395ca29cef35f8a.tar drakx-backup-do-not-use-4d37bebbb47db98088c70d4d4395ca29cef35f8a.tar.gz drakx-backup-do-not-use-4d37bebbb47db98088c70d4d4395ca29cef35f8a.tar.bz2 drakx-backup-do-not-use-4d37bebbb47db98088c70d4d4395ca29cef35f8a.tar.xz drakx-backup-do-not-use-4d37bebbb47db98088c70d4d4395ca29cef35f8a.zip |
no_comment
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 8f23f1795..c05a1b27b 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -262,9 +262,12 @@ sub allocatePartitions($$) { while (suggest_part($hd, $part = { start => $start, size => 0, maxsize => $size }, $hds, $to_add)) { + log::l("partsize " . ($part->{size}+ $part->{start})); + log::l("size " . ($size+ $start)); add($hd, $part, $hds); $size -= $part->{size} + $part->{start} - $start; $start = $part->{start} + $part->{size}; + log::l("size " . ($size+ $start)); } } } |