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

Update kernel configs #578

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion images/kernel/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Check https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/refs/ for updates
REGISTRY?=weaveworks
IMAGE_NAME?=${REGISTRY}/ignite-kernel
KERNEL_VERSIONS ?= 4.14.166 4.19.97 5.4.13
KERNEL_VERSIONS ?= 4.14.174 4.19.114 5.4.31
GOARCH?=amd64
GOARCH_LIST = amd64 arm64

Expand All @@ -18,11 +18,13 @@ endif
all: build

upgrade: $(addprefix upgrade-,$(KERNEL_VERSIONS))
mkdir -p generated
./patch-config.sh
for file in generated/*; do \
./upgrade-config.sh $$file $$file; done

upgrade-%:
mkdir -p versioned
for file in upstream/*; do \
./upgrade-config.sh $$file versioned/$$(basename $$file)-$*; done

Expand Down
Loading