Only build bootable buildd images for amd64.

This commit is contained in:
Cody Shepherd 2020-02-12 10:30:03 -08:00 committed by David Krauser
parent a668e09ac4
commit 15a0b598d1
2 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash -eux
case $ARCH in
amd64|arm64|armhf)
amd64)
;;
*)
echo "We don't create EFI images for $ARCH."

View File

@ -4,6 +4,15 @@
# Generate linux-virtual image
#
case $ARCH in
amd64)
;;
*)
echo "We don't build bootable Buildd images for $ARCH."
exit 0
;;
esac
echo "Building bootable Buildd image"
IMAGE_STR="# BUILDD_IMG: This file was created/modified by the Buildd Image build process"