Skip to content

Commit 841f902

Browse files
committed
fix: use Firecracker S3 kernel URL (no longer bundled in releases)
1 parent 214d852 commit 841f902

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

images/scripts/fetch-kernel.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ if [[ -f "$DEST" ]]; then
4949
exit 0
5050
fi
5151

52-
# Firecracker publishes kernels on their GitHub releases
53-
BASE_URL="https://github.com/firecracker-microvm/firecracker/releases/download/${FC_VERSION}"
54-
DOWNLOAD_URL="${BASE_URL}/vmlinux-${KERNEL_VERSION}-x86_64.bin"
52+
# Firecracker publishes guest kernels on their S3 bucket (not in release tarballs since v1.10+)
53+
DOWNLOAD_URL="https://s3.amazonaws.com/spec.ccfc.min/img/quickstart_guide/x86_64/kernels/vmlinux.bin"
5554

5655
echo "=== Fetching Firecracker guest kernel ==="
5756
echo "Kernel version: ${KERNEL_VERSION}"

0 commit comments

Comments
 (0)