mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-02 20:22:20 +00:00
Create new kernel series 6.12.x
Signed-off-by: Chris Irrgang <chris.irrgang@gmx.de>
This commit is contained in:
committed by
Avi Deitcher
parent
d94f2e9095
commit
be7c483e17
3
kernel/6.12.x/build-args
Normal file
3
kernel/6.12.x/build-args
Normal 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
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
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
5364
kernel/6.12.x/config-x86_64
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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 && \
|
||||
|
||||
Reference in New Issue
Block a user