From f14a37f8810c4ba858a909add71e5aa5b6e08432 Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Thu, 2 Apr 2026 17:30:18 -0700 Subject: [PATCH] Bump kata kernel To match https://github.com/apple/container --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f5b47124..b26495bc 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ LIBARCHIVE_UPSTREAM_REPO := https://github.com/libarchive/libarchive LIBARCHIVE_UPSTREAM_VERSION := v3.7.7 LIBARCHIVE_LOCAL_DIR := workdir/libarchive -KATA_BINARY_PACKAGE := https://github.com/kata-containers/kata-containers/releases/download/3.17.0/kata-static-3.17.0-arm64.tar.xz +KATA_BINARY_PACKAGE := https://github.com/kata-containers/kata-containers/releases/download/3.26.0/kata-static-3.26.0-arm64.tar.zst include Protobuf.Makefile .DEFAULT_GOAL := all @@ -115,12 +115,12 @@ endif .PHONY: fetch-default-kernel fetch-default-kernel: @mkdir -p .local/ bin/ -ifeq (,$(wildcard .local/kata.tar.gz)) - @curl -SsL -o .local/kata.tar.gz ${KATA_BINARY_PACKAGE} +ifeq (,$(wildcard .local/kata.tar.zst)) + @curl -SL -o .local/kata.tar.zst ${KATA_BINARY_PACKAGE} endif ifeq (,$(wildcard .local/vmlinux)) - @tar -zxf .local/kata.tar.gz -C .local/ --strip-components=1 - @cp -L .local/opt/kata/share/kata-containers/vmlinux.container .local/vmlinux + @tar --zstd -xf .local/kata.tar.zst -C .local/ --strip-components=1 + @cp -L .local/opt/kata/share/kata-containers/vmlinux-6.18.5-177 .local/vmlinux endif ifeq (,$(wildcard bin/vmlinux)) @cp .local/vmlinux bin/vmlinux