forked from josch/mmdebstrap
coverage.sh,make_mirror.sh: add i386 support
This commit is contained in:
parent
85328c5c7e
commit
077d8cdd9a
2 changed files with 10 additions and 1 deletions
|
@ -1887,6 +1887,12 @@ tar -C /tmp/debian-chroot --one-file-system -c . | tar -t | sort > tar2.txt
|
|||
echo ./usr/lib32/;
|
||||
echo ./usr/libx32/;
|
||||
;;
|
||||
i386)
|
||||
echo ./lib64;
|
||||
echo ./libx32;
|
||||
echo ./usr/lib64/;
|
||||
echo ./usr/libx32/;
|
||||
;;
|
||||
ppc64el)
|
||||
echo ./lib64;
|
||||
;;
|
||||
|
|
|
@ -434,9 +434,12 @@ if [ "$HAVE_QEMU" = "yes" ]; then
|
|||
pkgs="$pkgs,mmdebstrap"
|
||||
fi
|
||||
case "$HOSTARCH" in
|
||||
amd64|arm64|i386)
|
||||
amd64|arm64)
|
||||
pkgs="$pkgs,linux-image-$HOSTARCH"
|
||||
;;
|
||||
i386)
|
||||
pkgs="$pkgs,linux-image-686"
|
||||
;;
|
||||
ppc64el)
|
||||
pkgs="$pkgs,linux-image-powerpc64le"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue