Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Commit 87430c8

Browse files
committed
Add 5.18.7 kernel
1 parent cff1eba commit 87430c8

File tree

6 files changed

+15965
-4
lines changed

6 files changed

+15965
-4
lines changed

images/kernel/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ REGISTRY?=weaveworks
2929
IMAGE_NAME?=${REGISTRY}/ignite-kernel
3030
KERNEL_BUILDER_NAME=${REGISTRY}/ignite-kernel-builder
3131
# Check https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/refs/ for updates
32-
KERNEL_VERSIONS ?= 4.14.254 4.19.215 5.4.157 5.10.77 5.14.16 # If you update this, please keep the .github/workflows/release-kernel-images.yml matrix up to date
32+
KERNEL_VERSIONS ?= 5.18.7 # If you update this, please keep the .github/workflows/release-kernel-images.yml matrix up to date
3333
GOARCH?=amd64
3434
GOARCH_LIST = amd64 arm64
3535

3636
ifeq ($(GOARCH),amd64)
37-
KERNEL_ARCH=x86
37+
KERNEL_ARCH=x86_64
3838
VMLINUX_PATH=vmlinux
3939
endif
4040
ifeq ($(GOARCH),arm64)

images/kernel/builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM ubuntu:18.04 AS builder
1+
FROM ubuntu:22.04 AS builder
22

3-
ARG GCC_VERSION="gcc-7"
3+
ARG GCC_VERSION="gcc-12"
44

55
# Install dependencies
66
RUN apt-get update -y && \

0 commit comments

Comments
 (0)