Skip to content

Commit 5c74998

Browse files
reneeriknordmark
authored andcommitted
tools: Fix tag for eve-mkimage-iso-efi
Commit ee15f4d introduced changes to fetch the eve-mkimage-iso-efi container for the right target architecture, the fix was needed to generate ISO images for arm64. However, the ARCH prefix was missing for the linuxkit pkg tag resolution. This commit adds the ARCH prefix just as it's done in the tools/parse-pkgs.sh script. Signed-off-by: Renê de Souza Pinto <[email protected]>
1 parent 83710c3 commit 5c74998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/makeiso.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818
EVE="$(cd "$(dirname "$0")" && pwd)/../"
1919
PATH="$EVE/build-tools/bin:$PATH"
2020
INSTALLER_TAR="$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
21-
MKIMAGE_TAG="$(linuxkit pkg show-tag "$EVE/pkg/mkimage-iso-efi")"
21+
MKIMAGE_TAG="$(linuxkit pkg show-tag "$EVE/pkg/mkimage-iso-efi")-${ARCH}"
2222
ISO="$(cd "$(dirname "$2")" && pwd)/$(basename "$2")"
2323

2424
if [ ! -f "$INSTALLER_TAR" ] || [ $# -lt 2 ]; then

0 commit comments

Comments
 (0)