forked from josch/mmdebstrap
add --qemu option to proot when creating tar of foreign arch chroot
This commit is contained in:
parent
174d54f933
commit
a5866a347c
1 changed files with 5 additions and 1 deletions
|
@ -1721,7 +1721,11 @@ sub main() {
|
||||||
} elsif ($options->{mode} eq 'proot') {
|
} elsif ($options->{mode} eq 'proot') {
|
||||||
# proot requires tar to run inside proot or otherwise
|
# proot requires tar to run inside proot or otherwise
|
||||||
# permissions will be completely off
|
# permissions will be completely off
|
||||||
0 == system('proot', '--root-id', "--rootfs=$options->{root}", '--cwd=/', 'tar', @taropts, '-C', '/', '.') or die "tar failed: $?";
|
my @qemuopt = ();
|
||||||
|
if (defined $options->{qemu}) {
|
||||||
|
push @qemuopt, "--qemu=qemu-$options->{qemu}";
|
||||||
|
}
|
||||||
|
0 == system('proot', '--root-id', "--rootfs=$options->{root}", '--cwd=/', @qemuopt, 'tar', @taropts, '-C', '/', '.') or die "tar failed: $?";
|
||||||
} elsif (any { $_ eq $options->{mode} } ('root', 'chrootless')) {
|
} elsif (any { $_ eq $options->{mode} } ('root', 'chrootless')) {
|
||||||
0 == system('tar', @taropts, '-C', $options->{root}, '.') or die "tar failed: $?";
|
0 == system('tar', @taropts, '-C', $options->{root}, '.') or die "tar failed: $?";
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue