mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 17:26:28 +00:00
kernel: Update to 4.19.1/4.18.17/4.14.79
Also fix the boolean expression for 'perf' in the Dockerfile. Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
This commit is contained in:
parent
077e31c10a
commit
3c5062ff9b
@ -177,9 +177,8 @@ RUN printf "KERNEL_SOURCE=${KERNEL_SOURCE}\n" > /out/kernel-source-info
|
||||
# perf
|
||||
# Only build perf for the latest LTS and the latest stable kernel.
|
||||
# There were intermittent breakage for 4.4.x and 4.9.x on some arches
|
||||
# Skip arm64 for now as perf for 4.19 fails to build.
|
||||
RUN if [ \( "${KERNEL_SERIES}" == "4.14.x" || "${KERNEL_SERIES}" == "4.19.x" \) \
|
||||
&& $(uname -m) != aarch64 ]; then \
|
||||
# Skip arm64 for now as perf for 4.19.x fails to build.
|
||||
RUN if ( [ "${KERNEL_SERIES}" = 4.14.x ] || [ "${KERNEL_SERIES}" = 4.19.x ] ) && [ $(uname -m) != aarch64 ]; then \
|
||||
mkdir -p /build/perf && \
|
||||
make -C tools/perf LDFLAGS=-static O=/build/perf && \
|
||||
strip /build/perf/perf && \
|
||||
|
@ -160,7 +160,7 @@ fetch: sources/linux-$(1).tar.xz
|
||||
ifeq ($(2), $(filter $(2),4.14.x 4.19.x))
|
||||
# Only build perf for the latest LTS and the latest stable kernel.
|
||||
ifneq ($(ARCH),aarch64)
|
||||
# Skip arm64 for now as perf for 4.19 fails to build.
|
||||
# Skip arm64 for now as perf for 4.19.x fails to build.
|
||||
build_perf_$(2)$(3)$(4): build_$(2)$(3)$(4)
|
||||
docker pull $(ORG)/$(IMAGE_PERF):$(1)$(3)$(4)-$(TAG)$(SUFFIX) || \
|
||||
DOCKER_CONTENT_TRUST=0 docker build -f Dockerfile.perf \
|
||||
@ -262,22 +262,22 @@ endef
|
||||
# Debug targets only for latest stable and LTS stable
|
||||
#
|
||||
ifeq ($(ARCH),x86_64)
|
||||
$(eval $(call kernel,4.19,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.18.16,4.18.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.78,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.78,4.14.x,,-dbg))
|
||||
$(eval $(call kernel,4.19.1,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.18.17,4.18.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.79,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.79,4.14.x,,-dbg))
|
||||
$(eval $(call kernel,4.14.71,4.14.x,-rt,))
|
||||
$(eval $(call kernel,4.9.135,4.9.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.4.162,4.4.x,$(EXTRA),$(DEBUG)))
|
||||
|
||||
else ifeq ($(ARCH),aarch64)
|
||||
$(eval $(call kernel,4.19,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.78,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.19.1,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.79,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.71,4.14.x,-rt,))
|
||||
|
||||
else ifeq ($(ARCH),s390x)
|
||||
$(eval $(call kernel,4.19,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.78,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.19.1,4.19.x,$(EXTRA),$(DEBUG)))
|
||||
$(eval $(call kernel,4.14.79,4.14.x,$(EXTRA),$(DEBUG)))
|
||||
endif
|
||||
|
||||
# Target for kernel config
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm64 4.14.78 Kernel Configuration
|
||||
# Linux/arm64 4.14.79 Kernel Configuration
|
||||
#
|
||||
CONFIG_ARM64=y
|
||||
CONFIG_64BIT=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/s390 4.14.78 Kernel Configuration
|
||||
# Linux/s390 4.14.79 Kernel Configuration
|
||||
#
|
||||
CONFIG_MMU=y
|
||||
CONFIG_ZONE_DMA=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.14.78 Kernel Configuration
|
||||
# Linux/x86 4.14.79 Kernel Configuration
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
CONFIG_X86_64=y
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.18.16 Kernel Configuration
|
||||
# Linux/x86 4.18.17 Kernel Configuration
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/arm64 4.19.0 Kernel Configuration
|
||||
# Linux/arm64 4.19.1 Kernel Configuration
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/s390 4.19.0 Kernel Configuration
|
||||
# Linux/s390 4.19.1 Kernel Configuration
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.19.0 Kernel Configuration
|
||||
# Linux/x86 4.19.1 Kernel Configuration
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 8e9f8fb7e227c9cc348447e1a0c14b24510e6e0d Mon Sep 17 00:00:00 2001
|
||||
From 21d63816cce340937723e14a45811bf2409fc4a0 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 01/21] NVDIMM: reducded ND_MIN_NAMESPACE_SIZE from 4MB to 4KB
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 240e4ddffe9b32700c468b0e76dc66c765704240 Mon Sep 17 00:00:00 2001
|
||||
From d4805418a2929e372fc32aa054b4159a20d8ac1b Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:00 -0700
|
||||
Subject: [PATCH 02/21] hyper-v: trace vmbus_on_msg_dpc()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 383aebe20ce70316ac69853f35ed1ea3ca312d8e Mon Sep 17 00:00:00 2001
|
||||
From 8f5c270c586bd471d9ca085f7c68e5f83dbeff8e Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:01 -0700
|
||||
Subject: [PATCH 03/21] hyper-v: trace vmbus_on_message()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 85d7961b93feb4dd3e6c3fafb4dc84d407da0020 Mon Sep 17 00:00:00 2001
|
||||
From daa0481032f9d934150597d9a0cf2759f20fc548 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:02 -0700
|
||||
Subject: [PATCH 04/21] hyper-v: trace vmbus_onoffer()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 74934622b232261edfd0f1c41a08ceed3f55b545 Mon Sep 17 00:00:00 2001
|
||||
From 2f767ba3dce84b15924f36d05c2d17e6c7a28109 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:03 -0700
|
||||
Subject: [PATCH 05/21] hyper-v: trace vmbus_onoffer_rescind()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 36b43f7c045fdcc620c426c35b75f3d2332f351c Mon Sep 17 00:00:00 2001
|
||||
From cf4345a75364eb5cdfaf6d9e3cad8b6786656b5e Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:04 -0700
|
||||
Subject: [PATCH 06/21] hyper-v: trace vmbus_onopen_result()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 72c37719eff04106d2fe535e137f7ab0ea616aed Mon Sep 17 00:00:00 2001
|
||||
From 7ae7f162dce9621114c1a315938c11a87693573d Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:05 -0700
|
||||
Subject: [PATCH 07/21] hyper-v: trace vmbus_ongpadl_created()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 57915d196851baf305672fc04380b65e90707e61 Mon Sep 17 00:00:00 2001
|
||||
From 1dee7a8100fe6a30d0a0295ce6d19fac1e47f376 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:06 -0700
|
||||
Subject: [PATCH 08/21] hyper-v: trace vmbus_ongpadl_torndown()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 9eeff1b6d2dfb4e2b67716eb0b773da302d55ca6 Mon Sep 17 00:00:00 2001
|
||||
From 662a29a48ce8bdcd40419b0cbb446c00e9146944 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:07 -0700
|
||||
Subject: [PATCH 09/21] hyper-v: trace vmbus_onversion_response()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 7babe6988c0220116a7ddeedeae906ae806501c7 Mon Sep 17 00:00:00 2001
|
||||
From efea0c680e9c9e006ae07191a0a880a25050d8c8 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:08 -0700
|
||||
Subject: [PATCH 10/21] hyper-v: trace vmbus_request_offers()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 467817ed34b945589c69a1e59edbefc486b7d348 Mon Sep 17 00:00:00 2001
|
||||
From 7308a333b03ac637f848a989c7917209b40f590b Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:09 -0700
|
||||
Subject: [PATCH 11/21] hyper-v: trace vmbus_open()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 4e5629423e384ec6289ee2d30b8d116711e3d6f1 Mon Sep 17 00:00:00 2001
|
||||
From 09a1a4a33c71b7bbaea729fdaf67698755f15ca6 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:10 -0700
|
||||
Subject: [PATCH 12/21] hyper-v: trace vmbus_close_internal()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 8218e835df14a006383339bc7dd8c351627c949c Mon Sep 17 00:00:00 2001
|
||||
From ceaa01572bd4c31f8ed79281c048475f51e70b3f Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:11 -0700
|
||||
Subject: [PATCH 13/21] hyper-v: trace vmbus_establish_gpadl()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From e31fccbb133df1a56306f8cb397d0c6d202157de Mon Sep 17 00:00:00 2001
|
||||
From 439511704e71f97a64889963250e32eaf3fc7655 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:12 -0700
|
||||
Subject: [PATCH 14/21] hyper-v: trace vmbus_teardown_gpadl()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From b7cdfc86bbb66455dea5c49e377e6afd584a6c03 Mon Sep 17 00:00:00 2001
|
||||
From d7c01cf0456ae14a4882204eb9f2be57c2e36a96 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:13 -0700
|
||||
Subject: [PATCH 15/21] hyper-v: trace vmbus_negotiate_version()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From fad9230faaf57d43ce581cd1da8bd5a42683bf3a Mon Sep 17 00:00:00 2001
|
||||
From e921710598561c5e5ea5f5e2950be371591778fe Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:14 -0700
|
||||
Subject: [PATCH 16/21] hyper-v: trace vmbus_release_relid()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 236f03fd398423d32ae0c479fe5ff9d92b5d4bf0 Mon Sep 17 00:00:00 2001
|
||||
From c7491da250b4e85425b72b9293e638f61da2c6d0 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:15 -0700
|
||||
Subject: [PATCH 17/21] hyper-v: trace vmbus_send_tl_connect_request()
|
||||
|
@ -1,4 +1,4 @@
|
||||
From ff3d35dd2451952191c9e838a04797d8f6a633d1 Mon Sep 17 00:00:00 2001
|
||||
From 166d6d6c381f88510e2d3c9b0075e9a0e7088086 Mon Sep 17 00:00:00 2001
|
||||
From: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||||
Date: Sun, 29 Oct 2017 12:21:16 -0700
|
||||
Subject: [PATCH 18/21] hyper-v: trace channel events
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 877d47abc7a630a8151bf7ec61772cc220e5300d Mon Sep 17 00:00:00 2001
|
||||
From c236b4a71728ef5fef149dc10ba290d0caa8c70b Mon Sep 17 00:00:00 2001
|
||||
From: Christian Borntraeger <borntraeger@de.ibm.com>
|
||||
Date: Tue, 12 Dec 2017 09:08:35 +0100
|
||||
Subject: [PATCH 19/21] serial: forbid 8250 on s390
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 1da79653648919d9478f967826396fb8c2de372f Mon Sep 17 00:00:00 2001
|
||||
From 1549069a8f3b0b6536e7990538bff8b1cab52f8a Mon Sep 17 00:00:00 2001
|
||||
From: Cathy Avery <cavery@redhat.com>
|
||||
Date: Tue, 31 Oct 2017 08:52:06 -0400
|
||||
Subject: [PATCH 20/21] scsi: storvsc: Allow only one remove lun work item to
|
||||
|
@ -1,4 +1,4 @@
|
||||
From dec4af3b08047e49b23180adcb2fc6f40c25a421 Mon Sep 17 00:00:00 2001
|
||||
From 011639fb8fbdfc130105218efccbf0f92b706cb6 Mon Sep 17 00:00:00 2001
|
||||
From: Long Li <longli@microsoft.com>
|
||||
Date: Tue, 31 Oct 2017 14:58:08 -0700
|
||||
Subject: [PATCH 21/21] scsi: storvsc: Avoid excessive host scan on controller
|
||||
|
Loading…
Reference in New Issue
Block a user