mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-23 11:00:25 +00:00
Merge pull request #2909 from rn/kern-up
Update kernels to 4.15.2/4.14.18
This commit is contained in:
commit
7e262716bb
@ -21,6 +21,7 @@ RUN apk add \
|
||||
mpc1-dev \
|
||||
mpfr-dev \
|
||||
ncurses-dev \
|
||||
patch \
|
||||
sed \
|
||||
squashfs-tools \
|
||||
tar \
|
||||
@ -67,7 +68,7 @@ RUN set -e && \
|
||||
if [ -d /patches-${KERNEL_SERIES} ]; then \
|
||||
for patch in /patches-${KERNEL_SERIES}/*.patch; do \
|
||||
echo "Applying $patch"; \
|
||||
patch -p1 < "$patch"; \
|
||||
patch -t -F0 -N -u -p1 < "$patch"; \
|
||||
done; \
|
||||
fi
|
||||
|
||||
|
@ -6,6 +6,7 @@ RUN apk add \
|
||||
diffutils \
|
||||
libarchive-tools \
|
||||
ncurses-dev \
|
||||
patch \
|
||||
xz
|
||||
|
||||
ARG KERNEL_VERSIONS
|
||||
@ -30,7 +31,7 @@ RUN set -e && \
|
||||
if [ -d /patches-${SERIES} ]; then \
|
||||
for patch in /patches-${SERIES}/*.patch; do \
|
||||
echo "Applying $patch" && \
|
||||
patch -p1 < "$patch"; \
|
||||
patch -t -F0 -N -u -p1 < "$patch"; \
|
||||
done; \
|
||||
fi && \
|
||||
mv /config-${SERIES}-x86_64 arch/x86/configs/x86_64_defconfig && \
|
||||
|
@ -204,9 +204,9 @@ endef
|
||||
# Build Targets
|
||||
# Debug targets only for latest stable and LTS stable
|
||||
#
|
||||
$(eval $(call kernel,4.15.1,4.15.x,$(EXTRA)))
|
||||
$(eval $(call kernel,4.14.17,4.14.x,$(EXTRA)))
|
||||
$(eval $(call kernel,4.14.17,4.14.x,-dbg))
|
||||
$(eval $(call kernel,4.15.2,4.15.x,$(EXTRA)))
|
||||
$(eval $(call kernel,4.14.18,4.14.x,$(EXTRA)))
|
||||
$(eval $(call kernel,4.14.18,4.14.x,-dbg))
|
||||
$(eval $(call kernel,4.9.80,4.9.x,$(EXTRA)))
|
||||
$(eval $(call kernel,4.9.80,4.9.x,-dbg))
|
||||
$(eval $(call kernel,4.4.115,4.4.x,$(EXTRA)))
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm64 4.14.17 Kernel Configuration
|
||||
# Linux/arm64 4.14.18 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM64=y
|
||||
CONFIG_64BIT=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.14.17 Kernel Configuration
|
||||
# Linux/x86 4.14.18 Kernel Configuration
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
CONFIG_X86_64=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm64 4.15.1 Kernel Configuration
|
||||
# Linux/arm64 4.15.2 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM64=y
|
||||
CONFIG_64BIT=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.15.1 Kernel Configuration
|
||||
# Linux/x86 4.15.2 Kernel Configuration
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
CONFIG_X86_64=y
|
||||
|
@ -1,4 +1,4 @@
|
||||
From a629d501c42e00b7c1e37ab8d8f32e303cd89f7a Mon Sep 17 00:00:00 2001
|
||||
From 68f097990b84f65ddf63e483f59f7a33810dbeda Mon Sep 17 00:00:00 2001
|
||||
From: Cheng-mean Liu <soccerl@microsoft.com>
|
||||
Date: Tue, 11 Jul 2017 16:58:26 -0700
|
||||
Subject: [PATCH] NVDIMM: reducded ND_MIN_NAMESPACE_SIZE from 4MB to 4KB (page
|
||||
|
@ -1,5 +1,5 @@
|
||||
kernel:
|
||||
image: linuxkit/kernel:4.14.17
|
||||
image: linuxkit/kernel:4.14.18
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6061875ba11fd9c563fda6234b103ed9997ff782
|
||||
|
@ -1,5 +1,5 @@
|
||||
kernel:
|
||||
image: linuxkit/kernel:4.15.1
|
||||
image: linuxkit/kernel:4.15.2
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6061875ba11fd9c563fda6234b103ed9997ff782
|
||||
|
@ -3,7 +3,7 @@
|
||||
# In the last stage, it creates a package, which can be used for
|
||||
# testing.
|
||||
|
||||
FROM linuxkit/kernel:4.14.17 AS ksrc
|
||||
FROM linuxkit/kernel:4.14.18 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
@ -1,5 +1,5 @@
|
||||
kernel:
|
||||
image: linuxkit/kernel:4.14.17
|
||||
image: linuxkit/kernel:4.14.18
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6061875ba11fd9c563fda6234b103ed9997ff782
|
||||
|
@ -3,7 +3,7 @@
|
||||
# In the last stage, it creates a package, which can be used for
|
||||
# testing.
|
||||
|
||||
FROM linuxkit/kernel:4.15.1 AS ksrc
|
||||
FROM linuxkit/kernel:4.15.2 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
@ -1,5 +1,5 @@
|
||||
kernel:
|
||||
image: linuxkit/kernel:4.15.1
|
||||
image: linuxkit/kernel:4.15.2
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6061875ba11fd9c563fda6234b103ed9997ff782
|
||||
|
@ -1,5 +1,5 @@
|
||||
kernel:
|
||||
image: linuxkit/kernel:4.14.17
|
||||
image: linuxkit/kernel:4.14.18
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6061875ba11fd9c563fda6234b103ed9997ff782
|
||||
|
Loading…
Reference in New Issue
Block a user