From 4cbb7786c523690d14e244ae62a64fd799c23988 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Wed, 19 Oct 2022 11:28:25 +0000 Subject: [PATCH] Fixup Kernel image path on opensuse --- packages/kernels/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kernels/build.yaml b/packages/kernels/build.yaml index f68637b..cd5c4ef 100644 --- a/packages/kernels/build.yaml +++ b/packages/kernels/build.yaml @@ -20,7 +20,7 @@ steps: {{ if eq .Values.arch "arm64" }} # aarch64 has an uncompressed kernel so we need to link it to vmlinuz - | - kernel=$(ls /boot/zImage-* | head -n1) && \ + kernel=$(ls /boot/Image-* | head -n1) && \ ln -sf "${kernel#/boot/}" /boot/vmlinuz {{ end }} {{ end }}