forked from josch/mmdebstrap
adjust genext2fs (>= 1.5.0) interface
This commit is contained in:
parent
6c4c4bef41
commit
904274b9f4
1 changed files with 2 additions and 3 deletions
|
@ -3892,8 +3892,7 @@ sub main() {
|
||||||
(undef, my $filename)
|
(undef, my $filename)
|
||||||
= tempfile("mmdebstrap.ext2.XXXXXXXXXXXX", OPEN => 0);
|
= tempfile("mmdebstrap.ext2.XXXXXXXXXXXX", OPEN => 0);
|
||||||
open my $fh, '|-', 'genext2fs', '-B', '1024', '-b', '8', '-N',
|
open my $fh, '|-', 'genext2fs', '-B', '1024', '-b', '8', '-N',
|
||||||
'11',
|
'11', '-a', '-', $filename // error "failed to fork(): $!";
|
||||||
$filename // error "failed to fork(): $!";
|
|
||||||
# write 10240 null-bytes to genext2fs -- this represents an empty
|
# write 10240 null-bytes to genext2fs -- this represents an empty
|
||||||
# tar archive
|
# tar archive
|
||||||
print $fh ("\0" x 10240)
|
print $fh ("\0" x 10240)
|
||||||
|
@ -4688,7 +4687,7 @@ sub main() {
|
||||||
error "invalid number of blocks: $numblocks";
|
error "invalid number of blocks: $numblocks";
|
||||||
}
|
}
|
||||||
push @argv, 'genext2fs', '-B', 1024, '-b', $numblocks,
|
push @argv, 'genext2fs', '-B', 1024, '-b', $numblocks,
|
||||||
'-N', '0', $options->{target};
|
'-i', '16384', '-a', '-', $options->{target};
|
||||||
} elsif ($format eq 'tar') {
|
} elsif ($format eq 'tar') {
|
||||||
push @argv, @{$tar_compressor};
|
push @argv, @{$tar_compressor};
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue