make_mirror.sh: limit qemu to amd64 and i386 because syslinux is only available there

main
parent 64a7ac5ceb
commit b1f1d7fbdd
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -469,6 +469,17 @@ cleanuptmpdir() {
export SOURCE_DATE_EPOCH=$(date --date="$(grep-dctrl -s Date -n '' "$newmirrordir/dists/$DEFAULT_DIST/Release")" +%s)
if [ "$HAVE_QEMU" = "yes" ]; then
case "$HOSTARCH" in
amd64|i386)
# okay
;;
*)
echo "qemu support is only available on amd64 and i386" >&2
echo "because syslinux is only available on those arches" >&2
exit 1
;;
esac
# We must not use any --dpkgopt here because any dpkg options still
# leak into the chroot with chrootless mode.
# We do not use our own package cache here because

Loading…
Cancel
Save