Create new kernel series 6.12.x

Signed-off-by: Chris Irrgang <chris.irrgang@gmx.de>
This commit is contained in:
Chris Irrgang
2025-10-12 13:54:07 +00:00
committed by Avi Deitcher
parent d94f2e9095
commit be7c483e17
5 changed files with 16355 additions and 2 deletions

3
kernel/6.12.x/build-args Normal file
View File

@@ -0,0 +1,3 @@
KERNEL_VERSION=6.12.52
KERNEL_SERIES=6.12.x
BUILD_IMAGE=linuxkit/alpine:35b33c6b03c40e51046c3b053dd131a68a26c37a

5775
kernel/6.12.x/config-aarch64 Normal file

File diff suppressed because it is too large Load Diff

5199
kernel/6.12.x/config-riscv64 Normal file

File diff suppressed because it is too large Load Diff

5364
kernel/6.12.x/config-x86_64 Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -140,10 +140,22 @@ RUN make -j "$(getconf _NPROCESSORS_ONLN)" KCFLAGS="-fno-pie" && \
cp arch/x86_64/boot/bzImage /out/kernel; \
;; \
aarch64) \
cp arch/arm64/boot/Image.gz /out/kernel; \
if [ -f arch/arm64/boot/Image.gz ]; then \
cp arch/arm64/boot/Image.gz /out/kernel; \
elif [ -f arch/arm64/boot/vmlinuz.efi ]; then \
cp arch/arm64/boot/vmlinuz.efi /out/kernel; \
else \
echo "Error: Neither Image.gz nor vmlinuz.efi found for aarch64" >&2; exit 1; \
fi \
;; \
riscv64) \
cp arch/riscv/boot/Image.gz /out/kernel; \
if [ -f arch/riscv/boot/Image.gz ]; then \
cp arch/riscv/boot/Image.gz /out/kernel; \
elif [ -f arch/riscv/boot/vmlinuz.efi ]; then \
cp arch/riscv/boot/vmlinuz.efi /out/kernel; \
else \
echo "Error: Neither Image.gz nor vmlinuz.efi found for riscv64" >&2; exit 1; \
fi \
;; \
esac && \
cp System.map /out && \