From 48251e8bcf57651b4aef6951f198b0ed62d34cfb Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 12 Mar 2018 15:26:23 +0000 Subject: [PATCH 1/4] kernel: Enable IMA for 4.14.x and 4.15.x Enable the Integrity Measurement Architecture (IMA) for 4.14.x and 4.15.x kernels. This pretty much uses the defaults except we also enable INTEGRITY_ASYMMETRIC_KEYS and IMA_READ_POLICY. The latter may be useful for debugging. For s390x we also needed to enable TPM support. Signed-off-by: Rolf Neugebauer --- kernel/config-4.14.x-aarch64 | 25 +++++++++++++++++++++---- kernel/config-4.14.x-s390x | 32 ++++++++++++++++++++++++++++---- kernel/config-4.14.x-x86_64 | 31 ++++++++++++++++++++++++------- kernel/config-4.15.x-aarch64 | 25 +++++++++++++++++++++---- kernel/config-4.15.x-s390x | 32 ++++++++++++++++++++++++++++---- kernel/config-4.15.x-x86_64 | 31 ++++++++++++++++++++++++------- 6 files changed, 146 insertions(+), 30 deletions(-) diff --git a/kernel/config-4.14.x-aarch64 b/kernel/config-4.14.x-aarch64 index f505cc574..9132f3a13 100644 --- a/kernel/config-4.14.x-aarch64 +++ b/kernel/config-4.14.x-aarch64 @@ -4032,7 +4032,7 @@ CONFIG_STRICT_DEVMEM=y CONFIG_KEYS=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y -CONFIG_TRUSTED_KEYS=m +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -4055,10 +4055,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -4315,6 +4331,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_LIBFDT=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y diff --git a/kernel/config-4.14.x-s390x b/kernel/config-4.14.x-s390x index 65669f2c4..ae0487b6f 100644 --- a/kernel/config-4.14.x-s390x +++ b/kernel/config-4.14.x-s390x @@ -1874,12 +1874,18 @@ CONFIG_VIRTIO_CONSOLE=y CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_HW_RANDOM_TPM=y CONFIG_HW_RANDOM_S390=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_RAW_DRIVER is not set # CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set +CONFIG_TCG_TPM=y +# CONFIG_TCG_TIS_I2C_ATMEL is not set +# CONFIG_TCG_TIS_I2C_INFINEON is not set +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set CONFIG_DEVPORT=y # @@ -3039,6 +3045,7 @@ CONFIG_KEYS=y CONFIG_KEYS_COMPAT=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -3060,10 +3067,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -3299,6 +3322,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_OID_REGISTRY=y # CONFIG_SG_SPLIT is not set CONFIG_SG_POOL=y diff --git a/kernel/config-4.14.x-x86_64 b/kernel/config-4.14.x-x86_64 index 069251e50..63a027dd4 100644 --- a/kernel/config-4.14.x-x86_64 +++ b/kernel/config-4.14.x-x86_64 @@ -2219,9 +2219,9 @@ CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HPET_MMAP_DEFAULT=y CONFIG_HANGCHECK_TIMER=y -CONFIG_TCG_TPM=m -CONFIG_TCG_TIS_CORE=m -CONFIG_TCG_TIS=m +CONFIG_TCG_TPM=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS=y CONFIG_TCG_TIS_I2C_ATMEL=m CONFIG_TCG_TIS_I2C_INFINEON=m CONFIG_TCG_TIS_I2C_NUVOTON=m @@ -3850,7 +3850,7 @@ CONFIG_KEYS=y CONFIG_KEYS_COMPAT=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y -CONFIG_TRUSTED_KEYS=m +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -3874,10 +3874,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -4176,6 +4192,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_FONT_SUPPORT=y diff --git a/kernel/config-4.15.x-aarch64 b/kernel/config-4.15.x-aarch64 index aa99da9ef..714615f5b 100644 --- a/kernel/config-4.15.x-aarch64 +++ b/kernel/config-4.15.x-aarch64 @@ -4076,7 +4076,7 @@ CONFIG_STRICT_DEVMEM=y CONFIG_KEYS=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y -CONFIG_TRUSTED_KEYS=m +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -4099,10 +4099,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -4359,6 +4375,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_LIBFDT=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y diff --git a/kernel/config-4.15.x-s390x b/kernel/config-4.15.x-s390x index aa405fcf1..f96713e1d 100644 --- a/kernel/config-4.15.x-s390x +++ b/kernel/config-4.15.x-s390x @@ -1895,12 +1895,18 @@ CONFIG_VIRTIO_CONSOLE=y CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_VIRTIO=y +CONFIG_HW_RANDOM_TPM=y CONFIG_HW_RANDOM_S390=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_RAW_DRIVER is not set # CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set +CONFIG_TCG_TPM=y +# CONFIG_TCG_TIS_I2C_ATMEL is not set +# CONFIG_TCG_TIS_I2C_INFINEON is not set +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_VTPM_PROXY is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set CONFIG_DEVPORT=y # @@ -3076,6 +3082,7 @@ CONFIG_KEYS=y CONFIG_KEYS_COMPAT=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -3098,10 +3105,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -3337,6 +3360,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_OID_REGISTRY=y # CONFIG_SG_SPLIT is not set CONFIG_SG_POOL=y diff --git a/kernel/config-4.15.x-x86_64 b/kernel/config-4.15.x-x86_64 index fddc59fa6..9e76a56c8 100644 --- a/kernel/config-4.15.x-x86_64 +++ b/kernel/config-4.15.x-x86_64 @@ -2232,9 +2232,9 @@ CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HPET_MMAP_DEFAULT=y CONFIG_HANGCHECK_TIMER=y -CONFIG_TCG_TPM=m -CONFIG_TCG_TIS_CORE=m -CONFIG_TCG_TIS=m +CONFIG_TCG_TPM=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS=y CONFIG_TCG_TIS_I2C_ATMEL=m CONFIG_TCG_TIS_I2C_INFINEON=m CONFIG_TCG_TIS_I2C_NUVOTON=m @@ -3879,7 +3879,7 @@ CONFIG_KEYS=y CONFIG_KEYS_COMPAT=y CONFIG_PERSISTENT_KEYRINGS=y CONFIG_BIG_KEYS=y -CONFIG_TRUSTED_KEYS=m +CONFIG_TRUSTED_KEYS=y CONFIG_ENCRYPTED_KEYS=y CONFIG_KEY_DH_OPERATIONS=y CONFIG_SECURITY_DMESG_RESTRICT=y @@ -3903,10 +3903,26 @@ CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper" # CONFIG_SECURITY_LOADPIN is not set CONFIG_SECURITY_YAMA=y CONFIG_INTEGRITY=y -# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y CONFIG_INTEGRITY_AUDIT=y -# CONFIG_IMA is not set -# CONFIG_EVM is not set +CONFIG_IMA=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=m @@ -4205,6 +4221,7 @@ CONFIG_CLZ_TAB=y # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_MPILIB=y +CONFIG_SIGNATURE=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_FONT_SUPPORT=y From c573eee0ff8538fae6706e6b6c56d08ffc32f24b Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 12 Mar 2018 15:30:51 +0000 Subject: [PATCH 2/4] kernel: Update kernels to 4.14.25/4.15.26 Signed-off-by: Rolf Neugebauer --- kernel/Makefile | 14 +++++++------- kernel/config-4.14.x-aarch64 | 2 +- kernel/config-4.14.x-s390x | 2 +- kernel/config-4.14.x-x86_64 | 2 +- kernel/config-4.15.x-aarch64 | 2 +- kernel/config-4.15.x-s390x | 2 +- kernel/config-4.15.x-x86_64 | 2 +- ...cded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch | 2 +- .../0002-hyper-v-trace-vmbus_on_msg_dpc.patch | 2 +- .../0003-hyper-v-trace-vmbus_on_message.patch | 2 +- .../0004-hyper-v-trace-vmbus_onoffer.patch | 2 +- .../0005-hyper-v-trace-vmbus_onoffer_rescind.patch | 2 +- .../0006-hyper-v-trace-vmbus_onopen_result.patch | 2 +- .../0007-hyper-v-trace-vmbus_ongpadl_created.patch | 2 +- ...0008-hyper-v-trace-vmbus_ongpadl_torndown.patch | 2 +- ...09-hyper-v-trace-vmbus_onversion_response.patch | 2 +- .../0010-hyper-v-trace-vmbus_request_offers.patch | 2 +- .../0011-hyper-v-trace-vmbus_open.patch | 2 +- .../0012-hyper-v-trace-vmbus_close_internal.patch | 2 +- .../0013-hyper-v-trace-vmbus_establish_gpadl.patch | 2 +- .../0014-hyper-v-trace-vmbus_teardown_gpadl.patch | 2 +- ...015-hyper-v-trace-vmbus_negotiate_version.patch | 2 +- .../0016-hyper-v-trace-vmbus_release_relid.patch | 2 +- ...per-v-trace-vmbus_send_tl_connect_request.patch | 2 +- .../0018-hyper-v-trace-channel-events.patch | 2 +- .../0019-serial-forbid-8250-on-s390.patch | 2 +- .../0001-serial-forbid-8250-on-s390.patch | 5 +++-- 27 files changed, 35 insertions(+), 34 deletions(-) diff --git a/kernel/Makefile b/kernel/Makefile index 89c336c55..f6022e2f5 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -218,22 +218,22 @@ endef # Debug targets only for latest stable and LTS stable # ifeq ($(ARCH),x86_64) -$(eval $(call kernel,4.15.7,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.24,4.14.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.24,4.14.x,,-dbg)) +$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.25,4.14.x,,-dbg)) $(eval $(call kernel,4.14.18,4.14.x,-rt,)) $(eval $(call kernel,4.9.86,4.9.x,$(EXTRA),$(DEBUG))) $(eval $(call kernel,4.4.120,4.4.x,$(EXTRA),$(DEBUG))) else ifeq ($(ARCH),aarch64) -$(eval $(call kernel,4.15.7,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.24,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) $(eval $(call kernel,4.14.18,4.14.x,-rt,)) $(eval $(call kernel,4.9.86,4.9.x,$(EXTRA),$(DEBUG))) else ifeq ($(ARCH),s390x) -$(eval $(call kernel,4.15.7,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.24,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) endif # Target for kernel config diff --git a/kernel/config-4.14.x-aarch64 b/kernel/config-4.14.x-aarch64 index 9132f3a13..126da3454 100644 --- a/kernel/config-4.14.x-aarch64 +++ b/kernel/config-4.14.x-aarch64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 4.14.24 Kernel Configuration +# Linux/arm64 4.14.25 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y diff --git a/kernel/config-4.14.x-s390x b/kernel/config-4.14.x-s390x index ae0487b6f..a0be7ef3f 100644 --- a/kernel/config-4.14.x-s390x +++ b/kernel/config-4.14.x-s390x @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/s390 4.14.24 Kernel Configuration +# Linux/s390 4.14.25 Kernel Configuration # CONFIG_MMU=y CONFIG_ZONE_DMA=y diff --git a/kernel/config-4.14.x-x86_64 b/kernel/config-4.14.x-x86_64 index 63a027dd4..e66e0791f 100644 --- a/kernel/config-4.14.x-x86_64 +++ b/kernel/config-4.14.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.24 Kernel Configuration +# Linux/x86 4.14.25 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/config-4.15.x-aarch64 b/kernel/config-4.15.x-aarch64 index 714615f5b..d489b559c 100644 --- a/kernel/config-4.15.x-aarch64 +++ b/kernel/config-4.15.x-aarch64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 4.15.7 Kernel Configuration +# Linux/arm64 4.15.8 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y diff --git a/kernel/config-4.15.x-s390x b/kernel/config-4.15.x-s390x index f96713e1d..e4ffaec01 100644 --- a/kernel/config-4.15.x-s390x +++ b/kernel/config-4.15.x-s390x @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/s390 4.15.7 Kernel Configuration +# Linux/s390 4.15.8 Kernel Configuration # CONFIG_MMU=y CONFIG_ZONE_DMA=y diff --git a/kernel/config-4.15.x-x86_64 b/kernel/config-4.15.x-x86_64 index 9e76a56c8..ec6df9ef5 100644 --- a/kernel/config-4.15.x-x86_64 +++ b/kernel/config-4.15.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.15.7 Kernel Configuration +# Linux/x86 4.15.8 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch b/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch index 6da28f4c6..dc240db20 100644 --- a/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch +++ b/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch @@ -1,4 +1,4 @@ -From da15005d90cf70441ceb8ed504c3d890b0e53f7d Mon Sep 17 00:00:00 2001 +From 17286f1c79112fc8da2e712fd715b742e49900da Mon Sep 17 00:00:00 2001 From: Cheng-mean Liu Date: Tue, 11 Jul 2017 16:58:26 -0700 Subject: [PATCH 01/19] NVDIMM: reducded ND_MIN_NAMESPACE_SIZE from 4MB to 4KB diff --git a/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch b/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch index 28d40e883..cd2e5f6c8 100644 --- a/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch +++ b/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch @@ -1,4 +1,4 @@ -From e9fd07e6c521b194f44b8852d5158d48165b8b8f Mon Sep 17 00:00:00 2001 +From 11a0e6d53fddde6d0f1756c163a4b9c7c7a9ccc9 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:00 -0700 Subject: [PATCH 02/19] hyper-v: trace vmbus_on_msg_dpc() diff --git a/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch b/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch index 966deec1a..ce83792ba 100644 --- a/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch +++ b/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch @@ -1,4 +1,4 @@ -From 78c85990427d825732dc5e464eb09f486cf74948 Mon Sep 17 00:00:00 2001 +From 71e64b8b6e836dcf3eb7a0220c995e4cb06a1f45 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:01 -0700 Subject: [PATCH 03/19] hyper-v: trace vmbus_on_message() diff --git a/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch b/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch index 77c528371..1018bfb5d 100644 --- a/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch +++ b/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch @@ -1,4 +1,4 @@ -From b3f6828cd908d0e7bdb58cca4907ebaf8c9a9657 Mon Sep 17 00:00:00 2001 +From 1024904735ff5228a4b81bec5d52e950022ed9db Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:02 -0700 Subject: [PATCH 04/19] hyper-v: trace vmbus_onoffer() diff --git a/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch b/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch index 42aae116f..70c17e87b 100644 --- a/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch +++ b/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch @@ -1,4 +1,4 @@ -From 864773011fa74d6c2bc36c12350aaa54afe857b1 Mon Sep 17 00:00:00 2001 +From 8d696633da8f4285931c74e5da0a9debb8ee6294 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:03 -0700 Subject: [PATCH 05/19] hyper-v: trace vmbus_onoffer_rescind() diff --git a/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch b/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch index 809ff58a5..0ceda0e55 100644 --- a/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch +++ b/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch @@ -1,4 +1,4 @@ -From c1ca87ee553a13d58dc646334e74b47e7a746b1a Mon Sep 17 00:00:00 2001 +From e10011d8b78311c921415a0452cf6971e3e9793a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:04 -0700 Subject: [PATCH 06/19] hyper-v: trace vmbus_onopen_result() diff --git a/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch b/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch index c16ed98ea..0ec57f94e 100644 --- a/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch +++ b/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch @@ -1,4 +1,4 @@ -From c162337f3956a9ae3c8df37e2f3ac22e5cb06dc1 Mon Sep 17 00:00:00 2001 +From e7b84cb69ddfa599e56db47ea2c15ec5e6acf343 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:05 -0700 Subject: [PATCH 07/19] hyper-v: trace vmbus_ongpadl_created() diff --git a/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch b/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch index f8818c204..11a21373c 100644 --- a/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch +++ b/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch @@ -1,4 +1,4 @@ -From af304c5292a9d0f441660850d4482cea83da5263 Mon Sep 17 00:00:00 2001 +From 1a2eecb4f9a107e51b31a5dccb9c3dc1088c808e Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:06 -0700 Subject: [PATCH 08/19] hyper-v: trace vmbus_ongpadl_torndown() diff --git a/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch b/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch index e412036fc..db5fc26cf 100644 --- a/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch +++ b/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch @@ -1,4 +1,4 @@ -From 7d4cfefa0dddaa0893170eed5bdfdc34b83feb2a Mon Sep 17 00:00:00 2001 +From 2e24f658a97b7506e39390bb04dc1e259992960a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:07 -0700 Subject: [PATCH 09/19] hyper-v: trace vmbus_onversion_response() diff --git a/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch b/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch index 7d5e7bf6c..289e044da 100644 --- a/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch +++ b/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch @@ -1,4 +1,4 @@ -From d11be2042c7d4ebe7de401fdd67592260d8ec689 Mon Sep 17 00:00:00 2001 +From 58b399b8834999f40718def444490cc13761c765 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:08 -0700 Subject: [PATCH 10/19] hyper-v: trace vmbus_request_offers() diff --git a/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch b/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch index b7e782cf9..8028d3932 100644 --- a/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch +++ b/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch @@ -1,4 +1,4 @@ -From 5c0bdec259f102a1a8183133724f706ef8cdd733 Mon Sep 17 00:00:00 2001 +From eb759c6fb480d4087bf9fe7edc72b1d55f28b4e3 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:09 -0700 Subject: [PATCH 11/19] hyper-v: trace vmbus_open() diff --git a/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch b/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch index 165f20a81..d9915d1bb 100644 --- a/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch +++ b/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch @@ -1,4 +1,4 @@ -From b551da04970dc5b7fc1af270d91fe66110cd285a Mon Sep 17 00:00:00 2001 +From 3931bb604d34c124d81415dfc0a645bd2799d5e0 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:10 -0700 Subject: [PATCH 12/19] hyper-v: trace vmbus_close_internal() diff --git a/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch b/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch index 78bb05029..d67687d0c 100644 --- a/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch +++ b/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch @@ -1,4 +1,4 @@ -From a2602941017c56bb4ba24c619c51d71acd6d3d3a Mon Sep 17 00:00:00 2001 +From 18e02eb45a81cb51a8b0440512af6d63d916774e Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:11 -0700 Subject: [PATCH 13/19] hyper-v: trace vmbus_establish_gpadl() diff --git a/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch b/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch index aa3073f8d..fcc32b222 100644 --- a/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch +++ b/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch @@ -1,4 +1,4 @@ -From 2faaee17c616cf51bbdb1b5c83dbb0a9db2b5979 Mon Sep 17 00:00:00 2001 +From 41f988a93d09aa649cbd368325509bd9f984c78e Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:12 -0700 Subject: [PATCH 14/19] hyper-v: trace vmbus_teardown_gpadl() diff --git a/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch b/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch index ebc4cebb2..c7091c9d0 100644 --- a/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch +++ b/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch @@ -1,4 +1,4 @@ -From 6a0e97caea97d2129d33c37c3ce454304debf5f8 Mon Sep 17 00:00:00 2001 +From 9ee6ce12094eb7a60e61a0037b09dbed7dc8e30b Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:13 -0700 Subject: [PATCH 15/19] hyper-v: trace vmbus_negotiate_version() diff --git a/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch b/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch index d37105c46..5fff9bd8b 100644 --- a/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch +++ b/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch @@ -1,4 +1,4 @@ -From 731058cff1d1cbfb8552e942b7ae24b2414e9701 Mon Sep 17 00:00:00 2001 +From 36a9a2076bc9cb6d8c09a47c55fe83b0feb73d62 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:14 -0700 Subject: [PATCH 16/19] hyper-v: trace vmbus_release_relid() diff --git a/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch b/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch index b17def644..9155c713a 100644 --- a/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch +++ b/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch @@ -1,4 +1,4 @@ -From 1e366484cd3517c5925cd32a59568732820e023b Mon Sep 17 00:00:00 2001 +From 54af3078614ddf0334579861781f2f61badc4785 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:15 -0700 Subject: [PATCH 17/19] hyper-v: trace vmbus_send_tl_connect_request() diff --git a/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch b/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch index 5dcef6daa..530fe11ed 100644 --- a/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch +++ b/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch @@ -1,4 +1,4 @@ -From 398d38c415476ed86b6e5b592785080a2da9dd7b Mon Sep 17 00:00:00 2001 +From c43b15957a8bfe0a234561d95826bb4581efcc42 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:16 -0700 Subject: [PATCH 18/19] hyper-v: trace channel events diff --git a/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch b/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch index 83f595dce..dcac525e4 100644 --- a/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch +++ b/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch @@ -1,4 +1,4 @@ -From 2c4a06245c886fea33d384029e5ab6aea5d349fb Mon Sep 17 00:00:00 2001 +From f051cf462417e4d290cf2b2ff1883c682e2d1666 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Tue, 12 Dec 2017 09:08:35 +0100 Subject: [PATCH 19/19] serial: forbid 8250 on s390 diff --git a/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch b/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch index 3e7f543c1..ec25a2616 100644 --- a/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch +++ b/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch @@ -1,4 +1,4 @@ -From 1598e38c0770b08c4d6371b670f9ee61a42ec68b Mon Sep 17 00:00:00 2001 +From 5fb71e9ccf2c7d72a06fb04d7a23f6aa604d9413 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Tue, 12 Dec 2017 09:08:35 +0100 Subject: [PATCH] serial: forbid 8250 on s390 @@ -13,6 +13,7 @@ Reported-by: Alice Frosi Signed-off-by: Christian Borntraeger Reviewed-by: Hendrik Brueckner Signed-off-by: Greg Kroah-Hartman +(cherry picked from commit 1598e38c0770b08c4d6371b670f9ee61a42ec68b) --- drivers/tty/serial/8250/Kconfig | 1 + 1 file changed, 1 insertion(+) @@ -30,5 +31,5 @@ index a5c0ef1e7695..16b1496e6105 100644 ---help--- This selects whether you want to include the driver for the standard -- -2.13.5 +2.16.0 From 659f877da6f72ea4b0316d04fa242e86d319d747 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 12 Mar 2018 17:00:06 +0000 Subject: [PATCH 3/4] kernel: Update to 4.15.9/4.14.26/4.9.87/4.4.121 Signed-off-by: Rolf Neugebauer --- kernel/Makefile | 20 +++++++++---------- kernel/config-4.14.x-aarch64 | 2 +- kernel/config-4.14.x-s390x | 2 +- kernel/config-4.14.x-x86_64 | 2 +- kernel/config-4.15.x-aarch64 | 2 +- kernel/config-4.15.x-s390x | 2 +- kernel/config-4.15.x-x86_64 | 2 +- kernel/config-4.4.x-x86_64 | 2 +- kernel/config-4.9.x-aarch64 | 2 +- kernel/config-4.9.x-x86_64 | 2 +- ...ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch | 2 +- .../0002-hyper-v-trace-vmbus_on_msg_dpc.patch | 2 +- .../0003-hyper-v-trace-vmbus_on_message.patch | 2 +- .../0004-hyper-v-trace-vmbus_onoffer.patch | 2 +- ...-hyper-v-trace-vmbus_onoffer_rescind.patch | 2 +- ...06-hyper-v-trace-vmbus_onopen_result.patch | 2 +- ...-hyper-v-trace-vmbus_ongpadl_created.patch | 2 +- ...hyper-v-trace-vmbus_ongpadl_torndown.patch | 2 +- ...per-v-trace-vmbus_onversion_response.patch | 2 +- ...0-hyper-v-trace-vmbus_request_offers.patch | 2 +- .../0011-hyper-v-trace-vmbus_open.patch | 2 +- ...2-hyper-v-trace-vmbus_close_internal.patch | 2 +- ...-hyper-v-trace-vmbus_establish_gpadl.patch | 2 +- ...4-hyper-v-trace-vmbus_teardown_gpadl.patch | 2 +- ...yper-v-trace-vmbus_negotiate_version.patch | 2 +- ...16-hyper-v-trace-vmbus_release_relid.patch | 2 +- ...-trace-vmbus_send_tl_connect_request.patch | 2 +- .../0018-hyper-v-trace-channel-events.patch | 2 +- .../0019-serial-forbid-8250-on-s390.patch | 2 +- .../0001-serial-forbid-8250-on-s390.patch | 2 +- ...ools-build-Add-test-for-sched_getcpu.patch | 2 +- ...returning-garbage-for-a-ret-variable.patch | 2 +- ...03-hv_sock-introduce-Hyper-V-Sockets.patch | 2 +- ...n-t-spam-the-logs-with-unknown-GUIDs.patch | 2 +- ...-Fix-the-mapping-between-host-versio.patch | 2 +- ...-Drivers-hv-vss-Improve-log-messages.patch | 2 +- ...peration-timeouts-should-match-host-.patch | 2 +- ...-Use-all-supported-IC-versions-to-ne.patch | 2 +- ...rs-hv-Log-the-negotiated-IC-versions.patch | 2 +- ...vmbus-fix-missed-ring-events-on-boot.patch | 2 +- ...to-error_clean_msglist-in-vmbus_open.patch | 2 +- ...y-enqueue-dequeue-the-channel-on-vmb.patch | 2 +- 42 files changed, 51 insertions(+), 51 deletions(-) diff --git a/kernel/Makefile b/kernel/Makefile index f6022e2f5..f65cc033d 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -218,22 +218,22 @@ endef # Debug targets only for latest stable and LTS stable # ifeq ($(ARCH),x86_64) -$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.25,4.14.x,,-dbg)) +$(eval $(call kernel,4.15.9,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.26,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.26,4.14.x,,-dbg)) $(eval $(call kernel,4.14.18,4.14.x,-rt,)) -$(eval $(call kernel,4.9.86,4.9.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.4.120,4.4.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.9.87,4.9.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.4.121,4.4.x,$(EXTRA),$(DEBUG))) else ifeq ($(ARCH),aarch64) -$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.15.9,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.26,4.14.x,$(EXTRA),$(DEBUG))) $(eval $(call kernel,4.14.18,4.14.x,-rt,)) -$(eval $(call kernel,4.9.86,4.9.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.9.87,4.9.x,$(EXTRA),$(DEBUG))) else ifeq ($(ARCH),s390x) -$(eval $(call kernel,4.15.8,4.15.x,$(EXTRA),$(DEBUG))) -$(eval $(call kernel,4.14.25,4.14.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.15.9,4.15.x,$(EXTRA),$(DEBUG))) +$(eval $(call kernel,4.14.26,4.14.x,$(EXTRA),$(DEBUG))) endif # Target for kernel config diff --git a/kernel/config-4.14.x-aarch64 b/kernel/config-4.14.x-aarch64 index 126da3454..e559605e8 100644 --- a/kernel/config-4.14.x-aarch64 +++ b/kernel/config-4.14.x-aarch64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 4.14.25 Kernel Configuration +# Linux/arm64 4.14.26 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y diff --git a/kernel/config-4.14.x-s390x b/kernel/config-4.14.x-s390x index a0be7ef3f..87999e162 100644 --- a/kernel/config-4.14.x-s390x +++ b/kernel/config-4.14.x-s390x @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/s390 4.14.25 Kernel Configuration +# Linux/s390 4.14.26 Kernel Configuration # CONFIG_MMU=y CONFIG_ZONE_DMA=y diff --git a/kernel/config-4.14.x-x86_64 b/kernel/config-4.14.x-x86_64 index e66e0791f..dd8186522 100644 --- a/kernel/config-4.14.x-x86_64 +++ b/kernel/config-4.14.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.14.25 Kernel Configuration +# Linux/x86 4.14.26 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/config-4.15.x-aarch64 b/kernel/config-4.15.x-aarch64 index d489b559c..50253022b 100644 --- a/kernel/config-4.15.x-aarch64 +++ b/kernel/config-4.15.x-aarch64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 4.15.8 Kernel Configuration +# Linux/arm64 4.15.9 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y diff --git a/kernel/config-4.15.x-s390x b/kernel/config-4.15.x-s390x index e4ffaec01..eda6a7bb3 100644 --- a/kernel/config-4.15.x-s390x +++ b/kernel/config-4.15.x-s390x @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/s390 4.15.8 Kernel Configuration +# Linux/s390 4.15.9 Kernel Configuration # CONFIG_MMU=y CONFIG_ZONE_DMA=y diff --git a/kernel/config-4.15.x-x86_64 b/kernel/config-4.15.x-x86_64 index ec6df9ef5..d06be82d6 100644 --- a/kernel/config-4.15.x-x86_64 +++ b/kernel/config-4.15.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.15.8 Kernel Configuration +# Linux/x86 4.15.9 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/config-4.4.x-x86_64 b/kernel/config-4.4.x-x86_64 index a0b908ae8..6b0605203 100644 --- a/kernel/config-4.4.x-x86_64 +++ b/kernel/config-4.4.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.4.120 Kernel Configuration +# Linux/x86 4.4.121 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/config-4.9.x-aarch64 b/kernel/config-4.9.x-aarch64 index 2577be6ce..44bf953d1 100644 --- a/kernel/config-4.9.x-aarch64 +++ b/kernel/config-4.9.x-aarch64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 4.9.86 Kernel Configuration +# Linux/arm64 4.9.87 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y diff --git a/kernel/config-4.9.x-x86_64 b/kernel/config-4.9.x-x86_64 index a79a5329f..fecae407e 100644 --- a/kernel/config-4.9.x-x86_64 +++ b/kernel/config-4.9.x-x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.9.86 Kernel Configuration +# Linux/x86 4.9.87 Kernel Configuration # CONFIG_64BIT=y CONFIG_X86_64=y diff --git a/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch b/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch index dc240db20..d467c9e73 100644 --- a/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch +++ b/kernel/patches-4.14.x/0001-NVDIMM-reducded-ND_MIN_NAMESPACE_SIZE-from-4MB-to-4K.patch @@ -1,4 +1,4 @@ -From 17286f1c79112fc8da2e712fd715b742e49900da Mon Sep 17 00:00:00 2001 +From 449e0e84b4db13ad44ac22b554060b89e886675e Mon Sep 17 00:00:00 2001 From: Cheng-mean Liu Date: Tue, 11 Jul 2017 16:58:26 -0700 Subject: [PATCH 01/19] NVDIMM: reducded ND_MIN_NAMESPACE_SIZE from 4MB to 4KB diff --git a/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch b/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch index cd2e5f6c8..173d4fe4e 100644 --- a/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch +++ b/kernel/patches-4.14.x/0002-hyper-v-trace-vmbus_on_msg_dpc.patch @@ -1,4 +1,4 @@ -From 11a0e6d53fddde6d0f1756c163a4b9c7c7a9ccc9 Mon Sep 17 00:00:00 2001 +From 8a802507e3be115d0d9a262caf4d9a23cda85c66 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:00 -0700 Subject: [PATCH 02/19] hyper-v: trace vmbus_on_msg_dpc() diff --git a/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch b/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch index ce83792ba..ee467ab01 100644 --- a/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch +++ b/kernel/patches-4.14.x/0003-hyper-v-trace-vmbus_on_message.patch @@ -1,4 +1,4 @@ -From 71e64b8b6e836dcf3eb7a0220c995e4cb06a1f45 Mon Sep 17 00:00:00 2001 +From 9823ce98fbe834b4098617b3bc1bc894e3a75d1a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:01 -0700 Subject: [PATCH 03/19] hyper-v: trace vmbus_on_message() diff --git a/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch b/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch index 1018bfb5d..9ec91a705 100644 --- a/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch +++ b/kernel/patches-4.14.x/0004-hyper-v-trace-vmbus_onoffer.patch @@ -1,4 +1,4 @@ -From 1024904735ff5228a4b81bec5d52e950022ed9db Mon Sep 17 00:00:00 2001 +From 384874473e5ba0fb4ccad476f91068e768e026c9 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:02 -0700 Subject: [PATCH 04/19] hyper-v: trace vmbus_onoffer() diff --git a/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch b/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch index 70c17e87b..b9edebc05 100644 --- a/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch +++ b/kernel/patches-4.14.x/0005-hyper-v-trace-vmbus_onoffer_rescind.patch @@ -1,4 +1,4 @@ -From 8d696633da8f4285931c74e5da0a9debb8ee6294 Mon Sep 17 00:00:00 2001 +From 36bf4a63f52d71bdb55c2092e17c81d7114a5f6a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:03 -0700 Subject: [PATCH 05/19] hyper-v: trace vmbus_onoffer_rescind() diff --git a/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch b/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch index 0ceda0e55..19b68e670 100644 --- a/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch +++ b/kernel/patches-4.14.x/0006-hyper-v-trace-vmbus_onopen_result.patch @@ -1,4 +1,4 @@ -From e10011d8b78311c921415a0452cf6971e3e9793a Mon Sep 17 00:00:00 2001 +From 992dab46e03988520fb08d3b079dbdf4bfaa1895 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:04 -0700 Subject: [PATCH 06/19] hyper-v: trace vmbus_onopen_result() diff --git a/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch b/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch index 0ec57f94e..97c902337 100644 --- a/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch +++ b/kernel/patches-4.14.x/0007-hyper-v-trace-vmbus_ongpadl_created.patch @@ -1,4 +1,4 @@ -From e7b84cb69ddfa599e56db47ea2c15ec5e6acf343 Mon Sep 17 00:00:00 2001 +From 928ceefd0c70246b967f5cea7438232549362350 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:05 -0700 Subject: [PATCH 07/19] hyper-v: trace vmbus_ongpadl_created() diff --git a/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch b/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch index 11a21373c..1386b70c9 100644 --- a/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch +++ b/kernel/patches-4.14.x/0008-hyper-v-trace-vmbus_ongpadl_torndown.patch @@ -1,4 +1,4 @@ -From 1a2eecb4f9a107e51b31a5dccb9c3dc1088c808e Mon Sep 17 00:00:00 2001 +From 1fcc02127d917dfe02c0f51c644031b7db4feef0 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:06 -0700 Subject: [PATCH 08/19] hyper-v: trace vmbus_ongpadl_torndown() diff --git a/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch b/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch index db5fc26cf..be0b043f8 100644 --- a/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch +++ b/kernel/patches-4.14.x/0009-hyper-v-trace-vmbus_onversion_response.patch @@ -1,4 +1,4 @@ -From 2e24f658a97b7506e39390bb04dc1e259992960a Mon Sep 17 00:00:00 2001 +From 049c3097fb0810e08c65614138ea10907629d606 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:07 -0700 Subject: [PATCH 09/19] hyper-v: trace vmbus_onversion_response() diff --git a/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch b/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch index 289e044da..9d7439882 100644 --- a/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch +++ b/kernel/patches-4.14.x/0010-hyper-v-trace-vmbus_request_offers.patch @@ -1,4 +1,4 @@ -From 58b399b8834999f40718def444490cc13761c765 Mon Sep 17 00:00:00 2001 +From 75e7dce8fd3b4c82ac17a8e4e956d9e0e5603af4 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:08 -0700 Subject: [PATCH 10/19] hyper-v: trace vmbus_request_offers() diff --git a/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch b/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch index 8028d3932..38b78bf7d 100644 --- a/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch +++ b/kernel/patches-4.14.x/0011-hyper-v-trace-vmbus_open.patch @@ -1,4 +1,4 @@ -From eb759c6fb480d4087bf9fe7edc72b1d55f28b4e3 Mon Sep 17 00:00:00 2001 +From c3f319809cf80fd73c94b6f539a2402b400aade0 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:09 -0700 Subject: [PATCH 11/19] hyper-v: trace vmbus_open() diff --git a/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch b/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch index d9915d1bb..fd152131a 100644 --- a/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch +++ b/kernel/patches-4.14.x/0012-hyper-v-trace-vmbus_close_internal.patch @@ -1,4 +1,4 @@ -From 3931bb604d34c124d81415dfc0a645bd2799d5e0 Mon Sep 17 00:00:00 2001 +From 8b850417d7393b124f70ec3587ef10099a1a7c1c Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:10 -0700 Subject: [PATCH 12/19] hyper-v: trace vmbus_close_internal() diff --git a/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch b/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch index d67687d0c..e32fa6d71 100644 --- a/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch +++ b/kernel/patches-4.14.x/0013-hyper-v-trace-vmbus_establish_gpadl.patch @@ -1,4 +1,4 @@ -From 18e02eb45a81cb51a8b0440512af6d63d916774e Mon Sep 17 00:00:00 2001 +From 685fe8604510f24ac7bcdefc61a01cc781ab6744 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:11 -0700 Subject: [PATCH 13/19] hyper-v: trace vmbus_establish_gpadl() diff --git a/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch b/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch index fcc32b222..dd6d55df5 100644 --- a/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch +++ b/kernel/patches-4.14.x/0014-hyper-v-trace-vmbus_teardown_gpadl.patch @@ -1,4 +1,4 @@ -From 41f988a93d09aa649cbd368325509bd9f984c78e Mon Sep 17 00:00:00 2001 +From 355c723e7dc45ac030cf5f7cc72e8646b13ec66a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:12 -0700 Subject: [PATCH 14/19] hyper-v: trace vmbus_teardown_gpadl() diff --git a/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch b/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch index c7091c9d0..039fd35e4 100644 --- a/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch +++ b/kernel/patches-4.14.x/0015-hyper-v-trace-vmbus_negotiate_version.patch @@ -1,4 +1,4 @@ -From 9ee6ce12094eb7a60e61a0037b09dbed7dc8e30b Mon Sep 17 00:00:00 2001 +From dcbc9bcf482ae36ec7d02cdbbd2775400f8dcaeb Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:13 -0700 Subject: [PATCH 15/19] hyper-v: trace vmbus_negotiate_version() diff --git a/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch b/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch index 5fff9bd8b..610c51f97 100644 --- a/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch +++ b/kernel/patches-4.14.x/0016-hyper-v-trace-vmbus_release_relid.patch @@ -1,4 +1,4 @@ -From 36a9a2076bc9cb6d8c09a47c55fe83b0feb73d62 Mon Sep 17 00:00:00 2001 +From 0da131104af0352678d7f0b6da527e9dbc5dfc17 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:14 -0700 Subject: [PATCH 16/19] hyper-v: trace vmbus_release_relid() diff --git a/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch b/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch index 9155c713a..fb6babc86 100644 --- a/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch +++ b/kernel/patches-4.14.x/0017-hyper-v-trace-vmbus_send_tl_connect_request.patch @@ -1,4 +1,4 @@ -From 54af3078614ddf0334579861781f2f61badc4785 Mon Sep 17 00:00:00 2001 +From 702129d36a9d4d2b31407ef96b6d6a5acfad2ca0 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:15 -0700 Subject: [PATCH 17/19] hyper-v: trace vmbus_send_tl_connect_request() diff --git a/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch b/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch index 530fe11ed..f183c1956 100644 --- a/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch +++ b/kernel/patches-4.14.x/0018-hyper-v-trace-channel-events.patch @@ -1,4 +1,4 @@ -From c43b15957a8bfe0a234561d95826bb4581efcc42 Mon Sep 17 00:00:00 2001 +From 229476e67920fa9856da91062539d04585188c5a Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Sun, 29 Oct 2017 12:21:16 -0700 Subject: [PATCH 18/19] hyper-v: trace channel events diff --git a/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch b/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch index dcac525e4..b5c4d54dc 100644 --- a/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch +++ b/kernel/patches-4.14.x/0019-serial-forbid-8250-on-s390.patch @@ -1,4 +1,4 @@ -From f051cf462417e4d290cf2b2ff1883c682e2d1666 Mon Sep 17 00:00:00 2001 +From 942132e05281a1c62ce955cbb023dabe16f2d8b0 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Tue, 12 Dec 2017 09:08:35 +0100 Subject: [PATCH 19/19] serial: forbid 8250 on s390 diff --git a/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch b/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch index ec25a2616..603926e11 100644 --- a/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch +++ b/kernel/patches-4.15.x/0001-serial-forbid-8250-on-s390.patch @@ -1,4 +1,4 @@ -From 5fb71e9ccf2c7d72a06fb04d7a23f6aa604d9413 Mon Sep 17 00:00:00 2001 +From 85762ddf6cc357c70b6854d8070104bc3e39c0f3 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Tue, 12 Dec 2017 09:08:35 +0100 Subject: [PATCH] serial: forbid 8250 on s390 diff --git a/kernel/patches-4.9.x/0001-tools-build-Add-test-for-sched_getcpu.patch b/kernel/patches-4.9.x/0001-tools-build-Add-test-for-sched_getcpu.patch index bad1e7ecb..937b525df 100644 --- a/kernel/patches-4.9.x/0001-tools-build-Add-test-for-sched_getcpu.patch +++ b/kernel/patches-4.9.x/0001-tools-build-Add-test-for-sched_getcpu.patch @@ -1,4 +1,4 @@ -From 2ea3e2bf7c52346eb15a50c477b0b3f73fa26234 Mon Sep 17 00:00:00 2001 +From 318dfe6fb39533df22142c38730039d78df3f59e Mon Sep 17 00:00:00 2001 From: Arnaldo Carvalho de Melo Date: Thu, 2 Mar 2017 12:55:49 -0300 Subject: [PATCH 01/12] tools build: Add test for sched_getcpu() diff --git a/kernel/patches-4.9.x/0002-perf-jit-Avoid-returning-garbage-for-a-ret-variable.patch b/kernel/patches-4.9.x/0002-perf-jit-Avoid-returning-garbage-for-a-ret-variable.patch index 806aea4d6..3f155ee39 100644 --- a/kernel/patches-4.9.x/0002-perf-jit-Avoid-returning-garbage-for-a-ret-variable.patch +++ b/kernel/patches-4.9.x/0002-perf-jit-Avoid-returning-garbage-for-a-ret-variable.patch @@ -1,4 +1,4 @@ -From ec99912b69897cfc4741b4422eba3eb646a7fec1 Mon Sep 17 00:00:00 2001 +From fa54d00da4106b5159b15e3da2ad7d4114329dc9 Mon Sep 17 00:00:00 2001 From: Arnaldo Carvalho de Melo Date: Thu, 13 Oct 2016 17:12:35 -0300 Subject: [PATCH 02/12] perf jit: Avoid returning garbage for a ret variable diff --git a/kernel/patches-4.9.x/0003-hv_sock-introduce-Hyper-V-Sockets.patch b/kernel/patches-4.9.x/0003-hv_sock-introduce-Hyper-V-Sockets.patch index 2524a0ca3..680090bdf 100644 --- a/kernel/patches-4.9.x/0003-hv_sock-introduce-Hyper-V-Sockets.patch +++ b/kernel/patches-4.9.x/0003-hv_sock-introduce-Hyper-V-Sockets.patch @@ -1,4 +1,4 @@ -From b2050e596c6c6c465c79e5516877632664622cba Mon Sep 17 00:00:00 2001 +From 6de8bc3ac6127b61231ac74d6b6333770804f18d Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Sat, 23 Jul 2016 01:35:51 +0000 Subject: [PATCH 03/12] hv_sock: introduce Hyper-V Sockets diff --git a/kernel/patches-4.9.x/0004-vmbus-Don-t-spam-the-logs-with-unknown-GUIDs.patch b/kernel/patches-4.9.x/0004-vmbus-Don-t-spam-the-logs-with-unknown-GUIDs.patch index f8bc967a3..fdfc5be36 100644 --- a/kernel/patches-4.9.x/0004-vmbus-Don-t-spam-the-logs-with-unknown-GUIDs.patch +++ b/kernel/patches-4.9.x/0004-vmbus-Don-t-spam-the-logs-with-unknown-GUIDs.patch @@ -1,4 +1,4 @@ -From 25573c80ebc30353691a2a60f8fb498dac225fed Mon Sep 17 00:00:00 2001 +From 6098294c09c266baf0e91ae50bbb49f3d1c7a6a7 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 23 May 2016 18:55:45 +0100 Subject: [PATCH 04/12] vmbus: Don't spam the logs with unknown GUIDs diff --git a/kernel/patches-4.9.x/0005-Drivers-hv-utils-Fix-the-mapping-between-host-versio.patch b/kernel/patches-4.9.x/0005-Drivers-hv-utils-Fix-the-mapping-between-host-versio.patch index 132fbb50e..1fa8cd7d7 100644 --- a/kernel/patches-4.9.x/0005-Drivers-hv-utils-Fix-the-mapping-between-host-versio.patch +++ b/kernel/patches-4.9.x/0005-Drivers-hv-utils-Fix-the-mapping-between-host-versio.patch @@ -1,4 +1,4 @@ -From 8a80f6175bc0279890b18b9ef8bc3ff1f6515aa0 Mon Sep 17 00:00:00 2001 +From ea7f9f835aeb13fc163ace51cef88fe7c1e24918 Mon Sep 17 00:00:00 2001 From: Alex Ng Date: Sun, 6 Nov 2016 13:14:07 -0800 Subject: [PATCH 05/12] Drivers: hv: utils: Fix the mapping between host diff --git a/kernel/patches-4.9.x/0006-Drivers-hv-vss-Improve-log-messages.patch b/kernel/patches-4.9.x/0006-Drivers-hv-vss-Improve-log-messages.patch index 60928abf8..b3d164888 100644 --- a/kernel/patches-4.9.x/0006-Drivers-hv-vss-Improve-log-messages.patch +++ b/kernel/patches-4.9.x/0006-Drivers-hv-vss-Improve-log-messages.patch @@ -1,4 +1,4 @@ -From b63b7e853b69948e5458669f7d49e74584007ae0 Mon Sep 17 00:00:00 2001 +From 7802eeaf5441e315d38b5e72c5474a1b9fed8ecc Mon Sep 17 00:00:00 2001 From: Alex Ng Date: Sun, 6 Nov 2016 13:14:10 -0800 Subject: [PATCH 06/12] Drivers: hv: vss: Improve log messages. diff --git a/kernel/patches-4.9.x/0007-Drivers-hv-vss-Operation-timeouts-should-match-host-.patch b/kernel/patches-4.9.x/0007-Drivers-hv-vss-Operation-timeouts-should-match-host-.patch index 71ffd07c1..aafe8f6d4 100644 --- a/kernel/patches-4.9.x/0007-Drivers-hv-vss-Operation-timeouts-should-match-host-.patch +++ b/kernel/patches-4.9.x/0007-Drivers-hv-vss-Operation-timeouts-should-match-host-.patch @@ -1,4 +1,4 @@ -From c57379ead91fda6488745b52e08cdd420af1862c Mon Sep 17 00:00:00 2001 +From 7b8efc472c447799f341a50ef397c33790019953 Mon Sep 17 00:00:00 2001 From: Alex Ng Date: Sun, 6 Nov 2016 13:14:11 -0800 Subject: [PATCH 07/12] Drivers: hv: vss: Operation timeouts should match host diff --git a/kernel/patches-4.9.x/0008-Drivers-hv-vmbus-Use-all-supported-IC-versions-to-ne.patch b/kernel/patches-4.9.x/0008-Drivers-hv-vmbus-Use-all-supported-IC-versions-to-ne.patch index fded5560b..4e9b7c594 100644 --- a/kernel/patches-4.9.x/0008-Drivers-hv-vmbus-Use-all-supported-IC-versions-to-ne.patch +++ b/kernel/patches-4.9.x/0008-Drivers-hv-vmbus-Use-all-supported-IC-versions-to-ne.patch @@ -1,4 +1,4 @@ -From 094df61af096f789203ef2d113ae9f1f6fcdd2e8 Mon Sep 17 00:00:00 2001 +From fcad395c35919f092a43306cfdffa81f1557f322 Mon Sep 17 00:00:00 2001 From: Alex Ng Date: Sat, 28 Jan 2017 12:37:17 -0700 Subject: [PATCH 08/12] Drivers: hv: vmbus: Use all supported IC versions to diff --git a/kernel/patches-4.9.x/0009-Drivers-hv-Log-the-negotiated-IC-versions.patch b/kernel/patches-4.9.x/0009-Drivers-hv-Log-the-negotiated-IC-versions.patch index 4e332d5fa..189916640 100644 --- a/kernel/patches-4.9.x/0009-Drivers-hv-Log-the-negotiated-IC-versions.patch +++ b/kernel/patches-4.9.x/0009-Drivers-hv-Log-the-negotiated-IC-versions.patch @@ -1,4 +1,4 @@ -From 47bcff61900a9327cde17d3cf2bc1b8525101743 Mon Sep 17 00:00:00 2001 +From 8f498d05d6dc69c50b76fd785917b340aed5ecf2 Mon Sep 17 00:00:00 2001 From: Alex Ng Date: Sat, 28 Jan 2017 12:37:18 -0700 Subject: [PATCH 09/12] Drivers: hv: Log the negotiated IC versions. diff --git a/kernel/patches-4.9.x/0010-vmbus-fix-missed-ring-events-on-boot.patch b/kernel/patches-4.9.x/0010-vmbus-fix-missed-ring-events-on-boot.patch index 7ec4204ef..2cc4ec950 100644 --- a/kernel/patches-4.9.x/0010-vmbus-fix-missed-ring-events-on-boot.patch +++ b/kernel/patches-4.9.x/0010-vmbus-fix-missed-ring-events-on-boot.patch @@ -1,4 +1,4 @@ -From ab164b889b79d8e9e1b073525a123c464e70a948 Mon Sep 17 00:00:00 2001 +From abf2f8df3c66b842768c4271100a59ad90614376 Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Sun, 26 Mar 2017 16:42:20 +0800 Subject: [PATCH 10/12] vmbus: fix missed ring events on boot diff --git a/kernel/patches-4.9.x/0011-vmbus-remove-goto-error_clean_msglist-in-vmbus_open.patch b/kernel/patches-4.9.x/0011-vmbus-remove-goto-error_clean_msglist-in-vmbus_open.patch index 4eb006042..58232fa0e 100644 --- a/kernel/patches-4.9.x/0011-vmbus-remove-goto-error_clean_msglist-in-vmbus_open.patch +++ b/kernel/patches-4.9.x/0011-vmbus-remove-goto-error_clean_msglist-in-vmbus_open.patch @@ -1,4 +1,4 @@ -From a98c11033238a997dce371c3c9c6bf56014478c7 Mon Sep 17 00:00:00 2001 +From db9330a4c6bc7f827e45571bad2b8782f7b31ac3 Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Wed, 29 Mar 2017 18:37:10 +0800 Subject: [PATCH 11/12] vmbus: remove "goto error_clean_msglist" in diff --git a/kernel/patches-4.9.x/0012-vmbus-dynamically-enqueue-dequeue-the-channel-on-vmb.patch b/kernel/patches-4.9.x/0012-vmbus-dynamically-enqueue-dequeue-the-channel-on-vmb.patch index bff124ba0..7b98e5fad 100644 --- a/kernel/patches-4.9.x/0012-vmbus-dynamically-enqueue-dequeue-the-channel-on-vmb.patch +++ b/kernel/patches-4.9.x/0012-vmbus-dynamically-enqueue-dequeue-the-channel-on-vmb.patch @@ -1,4 +1,4 @@ -From 3f0cefed7838d8bd0ef8ed91a8548ae2869dd09f Mon Sep 17 00:00:00 2001 +From 8c4bd0b3024e24ba1bc8fe13b993ab8a59732c78 Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Fri, 24 Mar 2017 20:53:18 +0800 Subject: [PATCH 12/12] vmbus: dynamically enqueue/dequeue the channel on From fa21e15e667a385c752103b89225472e664c173b Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 12 Mar 2018 20:06:32 +0000 Subject: [PATCH 4/4] Update YAMLs to latest kernels Signed-off-by: Rolf Neugebauer --- examples/aws.yml | 2 +- examples/azure.yml | 2 +- examples/cadvisor.yml | 2 +- examples/docker-for-mac.yml | 2 +- examples/docker.yml | 2 +- examples/gcp.yml | 2 +- examples/getty.yml | 2 +- examples/hostmount-writeable-overlay.yml | 2 +- examples/influxdb-os.yml | 2 +- examples/minimal.yml | 2 +- examples/node_exporter.yml | 2 +- examples/openstack.yml | 2 +- examples/packet.arm64.yml | 2 +- examples/packet.yml | 2 +- examples/redis-os.yml | 2 +- examples/sshd.yml | 2 +- examples/swap.yml | 2 +- examples/vmware.yml | 2 +- examples/vpnkit-forwarder.yml | 2 +- examples/vsudd-containerd.yml | 2 +- examples/vultr.yml | 2 +- examples/wireguard.yml | 2 +- linuxkit.yml | 2 +- projects/compose/compose-dynamic.yml | 2 +- projects/compose/compose-static.yml | 2 +- projects/logging/examples/logging.yml | 2 +- projects/miragesdk/examples/mirage-dhcp.yml | 2 +- test/cases/000_build/000_formats/test.yml | 2 +- test/cases/010_platforms/000_qemu/000_run_kernel/test.yml | 2 +- test/cases/010_platforms/000_qemu/010_run_iso/test.yml | 2 +- test/cases/010_platforms/000_qemu/020_run_efi/test.yml | 2 +- test/cases/010_platforms/000_qemu/030_run_qcow_bios/test.yml | 2 +- test/cases/010_platforms/000_qemu/040_run_raw_bios/test.yml | 2 +- test/cases/010_platforms/000_qemu/050_run_aws/test.yml | 2 +- test/cases/010_platforms/000_qemu/100_container/test.yml | 2 +- test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml | 2 +- test/cases/010_platforms/010_hyperkit/010_acpi/test.yml | 2 +- test/cases/020_kernel/000_config_4.4.x/test.yml | 2 +- test/cases/020_kernel/001_config_4.9.x/test.yml | 2 +- test/cases/020_kernel/006_config_4.14.x/test.yml | 2 +- test/cases/020_kernel/007_config_4.15.x/test.yml | 2 +- test/cases/020_kernel/010_kmod_4.4.x/Dockerfile | 2 +- test/cases/020_kernel/010_kmod_4.4.x/test.sh | 2 +- test/cases/020_kernel/010_kmod_4.4.x/test.yml | 2 +- test/cases/020_kernel/011_kmod_4.9.x/Dockerfile | 2 +- test/cases/020_kernel/011_kmod_4.9.x/test.sh | 2 +- test/cases/020_kernel/011_kmod_4.9.x/test.yml | 2 +- test/cases/020_kernel/016_kmod_4.14.x/Dockerfile | 2 +- test/cases/020_kernel/016_kmod_4.14.x/test.sh | 2 +- test/cases/020_kernel/016_kmod_4.14.x/test.yml | 2 +- test/cases/020_kernel/017_kmod_4.15.x/Dockerfile | 2 +- test/cases/020_kernel/017_kmod_4.15.x/test.sh | 2 +- test/cases/020_kernel/017_kmod_4.15.x/test.yml | 2 +- test/cases/020_kernel/110_namespace/000_kernel-4.4.x/common.yml | 2 +- test/cases/020_kernel/110_namespace/001_kernel-4.9.x/common.yml | 2 +- .../cases/020_kernel/110_namespace/006_kernel-4.14.x/common.yml | 2 +- test/cases/030_security/000_docker-bench/test.yml | 2 +- test/cases/030_security/010_ports/test.yml | 2 +- test/cases/040_packages/002_binfmt/test.yml | 2 +- test/cases/040_packages/003_ca-certificates/test.yml | 2 +- test/cases/040_packages/003_containerd/test.yml | 2 +- test/cases/040_packages/004_dhcpcd/test.yml | 2 +- test/cases/040_packages/005_extend/000_ext4/test-create.yml | 2 +- test/cases/040_packages/005_extend/000_ext4/test.yml | 2 +- test/cases/040_packages/005_extend/001_btrfs/test-create.yml | 2 +- test/cases/040_packages/005_extend/001_btrfs/test.yml | 2 +- test/cases/040_packages/005_extend/002_xfs/test-create.yml | 2 +- test/cases/040_packages/005_extend/002_xfs/test.yml | 2 +- test/cases/040_packages/006_format_mount/000_auto/test.yml | 2 +- test/cases/040_packages/006_format_mount/001_by_label/test.yml | 2 +- test/cases/040_packages/006_format_mount/003_btrfs/test.yml | 2 +- test/cases/040_packages/006_format_mount/004_xfs/test.yml | 2 +- test/cases/040_packages/006_format_mount/010_multiple/test.yml | 2 +- test/cases/040_packages/013_mkimage/mkimage.yml | 2 +- test/cases/040_packages/013_mkimage/run.yml | 2 +- test/cases/040_packages/019_sysctl/test.yml | 2 +- test/cases/040_packages/023_wireguard/test.yml | 2 +- test/hack/test-ltp.yml | 2 +- test/hack/test.yml | 2 +- 79 files changed, 79 insertions(+), 79 deletions(-) diff --git a/examples/aws.yml b/examples/aws.yml index bf5f8a4ca..d18e992a8 100644 --- a/examples/aws.yml +++ b/examples/aws.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/azure.yml b/examples/azure.yml index 3b648aa82..b9631efd0 100644 --- a/examples/azure.yml +++ b/examples/azure.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/cadvisor.yml b/examples/cadvisor.yml index d709ef174..1f31a2327 100644 --- a/examples/cadvisor.yml +++ b/examples/cadvisor.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/docker-for-mac.yml b/examples/docker-for-mac.yml index f17c247a6..80e30000c 100644 --- a/examples/docker-for-mac.yml +++ b/examples/docker-for-mac.yml @@ -1,6 +1,6 @@ # This is an example for building the open source components of Docker for Mac kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 page_poison=1" init: - linuxkit/vpnkit-expose-port:v0.2 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host diff --git a/examples/docker.yml b/examples/docker.yml index 772e14f32..486de46b1 100644 --- a/examples/docker.yml +++ b/examples/docker.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/gcp.yml b/examples/gcp.yml index eea4260e2..3d257a47d 100644 --- a/examples/gcp.yml +++ b/examples/gcp.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/getty.yml b/examples/getty.yml index f021c3e1d..a2f1b456f 100644 --- a/examples/getty.yml +++ b/examples/getty.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/hostmount-writeable-overlay.yml b/examples/hostmount-writeable-overlay.yml index 22b7147d8..bbd45d50f 100644 --- a/examples/hostmount-writeable-overlay.yml +++ b/examples/hostmount-writeable-overlay.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/influxdb-os.yml b/examples/influxdb-os.yml index 0d9ad428e..117820a82 100644 --- a/examples/influxdb-os.yml +++ b/examples/influxdb-os.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0" init: - linuxkit/init:d899eee3560a40aa3b4bdd67b3bb82703714b2b9 diff --git a/examples/minimal.yml b/examples/minimal.yml index 89c4199d6..193c652e1 100644 --- a/examples/minimal.yml +++ b/examples/minimal.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/node_exporter.yml b/examples/node_exporter.yml index 52aba2de8..4d78ae4f5 100644 --- a/examples/node_exporter.yml +++ b/examples/node_exporter.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/openstack.yml b/examples/openstack.yml index 4a2d1ebe2..9ef8cf916 100644 --- a/examples/openstack.yml +++ b/examples/openstack.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/packet.arm64.yml b/examples/packet.arm64.yml index 84a3a973c..f21c84022 100644 --- a/examples/packet.arm64.yml +++ b/examples/packet.arm64.yml @@ -5,7 +5,7 @@ # for arm64 then the 'ucode' line in the kernel section can be left # out. kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyAMA0" ucode: "" onboot: diff --git a/examples/packet.yml b/examples/packet.yml index 9058ac307..526716a17 100644 --- a/examples/packet.yml +++ b/examples/packet.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: console=ttyS1 ucode: intel-ucode.cpio init: diff --git a/examples/redis-os.yml b/examples/redis-os.yml index a69cf6d21..f93ffdc5e 100644 --- a/examples/redis-os.yml +++ b/examples/redis-os.yml @@ -1,7 +1,7 @@ # Minimal YAML to run a redis server (used at DockerCon'17) # connect: nc localhost 6379 kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/sshd.yml b/examples/sshd.yml index 54de3fde0..5ad906ec9 100644 --- a/examples/sshd.yml +++ b/examples/sshd.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/swap.yml b/examples/swap.yml index c3f363049..a21a56309 100644 --- a/examples/swap.yml +++ b/examples/swap.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/vmware.yml b/examples/vmware.yml index e1bbb1fd0..0182ebf00 100644 --- a/examples/vmware.yml +++ b/examples/vmware.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/vpnkit-forwarder.yml b/examples/vpnkit-forwarder.yml index 4d28f6dc0..75cd1d29f 100644 --- a/examples/vpnkit-forwarder.yml +++ b/examples/vpnkit-forwarder.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/vsudd-containerd.yml b/examples/vsudd-containerd.yml index 251d1abf1..64bd7a184 100644 --- a/examples/vsudd-containerd.yml +++ b/examples/vsudd-containerd.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/vultr.yml b/examples/vultr.yml index eea4260e2..3d257a47d 100644 --- a/examples/vultr.yml +++ b/examples/vultr.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/examples/wireguard.yml b/examples/wireguard.yml index 30342a333..35e8ea2cf 100644 --- a/examples/wireguard.yml +++ b/examples/wireguard.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/linuxkit.yml b/linuxkit.yml index dde549f68..d358462b6 100644 --- a/linuxkit.yml +++ b/linuxkit.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=tty0 console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/projects/compose/compose-dynamic.yml b/projects/compose/compose-dynamic.yml index f4afe317b..2ca0b822c 100644 --- a/projects/compose/compose-dynamic.yml +++ b/projects/compose/compose-dynamic.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 page_poison=1" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/projects/compose/compose-static.yml b/projects/compose/compose-static.yml index 5b7dfb674..7902ef5fc 100644 --- a/projects/compose/compose-static.yml +++ b/projects/compose/compose-static.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 page_poison=1" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/projects/logging/examples/logging.yml b/projects/logging/examples/logging.yml index 776d0adbc..1022ea281 100644 --- a/projects/logging/examples/logging.yml +++ b/projects/logging/examples/logging.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=tty0 page_poison=1" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a # with runc, logwrite, startmemlogd diff --git a/projects/miragesdk/examples/mirage-dhcp.yml b/projects/miragesdk/examples/mirage-dhcp.yml index 5ab64930b..15cdf8d84 100644 --- a/projects/miragesdk/examples/mirage-dhcp.yml +++ b/projects/miragesdk/examples/mirage-dhcp.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 page_poison=1" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/000_build/000_formats/test.yml b/test/cases/000_build/000_formats/test.yml index 1e62c2d3d..f73f4181a 100644 --- a/test/cases/000_build/000_formats/test.yml +++ b/test/cases/000_build/000_formats/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml b/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml index cf893d8b1..66a0189e8 100644 --- a/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml +++ b/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/010_run_iso/test.yml b/test/cases/010_platforms/000_qemu/010_run_iso/test.yml index 3176f86a2..382e6e655 100644 --- a/test/cases/010_platforms/000_qemu/010_run_iso/test.yml +++ b/test/cases/010_platforms/000_qemu/010_run_iso/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/020_run_efi/test.yml b/test/cases/010_platforms/000_qemu/020_run_efi/test.yml index ec95e683a..119147996 100644 --- a/test/cases/010_platforms/000_qemu/020_run_efi/test.yml +++ b/test/cases/010_platforms/000_qemu/020_run_efi/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/030_run_qcow_bios/test.yml b/test/cases/010_platforms/000_qemu/030_run_qcow_bios/test.yml index ec95e683a..119147996 100644 --- a/test/cases/010_platforms/000_qemu/030_run_qcow_bios/test.yml +++ b/test/cases/010_platforms/000_qemu/030_run_qcow_bios/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/040_run_raw_bios/test.yml b/test/cases/010_platforms/000_qemu/040_run_raw_bios/test.yml index ec95e683a..119147996 100644 --- a/test/cases/010_platforms/000_qemu/040_run_raw_bios/test.yml +++ b/test/cases/010_platforms/000_qemu/040_run_raw_bios/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/050_run_aws/test.yml b/test/cases/010_platforms/000_qemu/050_run_aws/test.yml index ec95e683a..119147996 100644 --- a/test/cases/010_platforms/000_qemu/050_run_aws/test.yml +++ b/test/cases/010_platforms/000_qemu/050_run_aws/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/000_qemu/100_container/test.yml b/test/cases/010_platforms/000_qemu/100_container/test.yml index a4e1af064..e06d9287b 100644 --- a/test/cases/010_platforms/000_qemu/100_container/test.yml +++ b/test/cases/010_platforms/000_qemu/100_container/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml b/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml index ec95e683a..119147996 100644 --- a/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml +++ b/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/010_platforms/010_hyperkit/010_acpi/test.yml b/test/cases/010_platforms/010_hyperkit/010_acpi/test.yml index 80245a2fe..7fd3579ec 100644 --- a/test/cases/010_platforms/010_hyperkit/010_acpi/test.yml +++ b/test/cases/010_platforms/010_hyperkit/010_acpi/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/000_config_4.4.x/test.yml b/test/cases/020_kernel/000_config_4.4.x/test.yml index 7992d13b1..4ad1dab7c 100644 --- a/test/cases/020_kernel/000_config_4.4.x/test.yml +++ b/test/cases/020_kernel/000_config_4.4.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.4.120 + image: linuxkit/kernel:4.4.121 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/001_config_4.9.x/test.yml b/test/cases/020_kernel/001_config_4.9.x/test.yml index 8ccc8c75f..16d74beb5 100644 --- a/test/cases/020_kernel/001_config_4.9.x/test.yml +++ b/test/cases/020_kernel/001_config_4.9.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.9.86 + image: linuxkit/kernel:4.9.87 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/006_config_4.14.x/test.yml b/test/cases/020_kernel/006_config_4.14.x/test.yml index 7b550533c..ff5de5409 100644 --- a/test/cases/020_kernel/006_config_4.14.x/test.yml +++ b/test/cases/020_kernel/006_config_4.14.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/007_config_4.15.x/test.yml b/test/cases/020_kernel/007_config_4.15.x/test.yml index 529a8ef59..2a22db5ee 100644 --- a/test/cases/020_kernel/007_config_4.15.x/test.yml +++ b/test/cases/020_kernel/007_config_4.15.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.15.7 + image: linuxkit/kernel:4.15.9 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/010_kmod_4.4.x/Dockerfile b/test/cases/020_kernel/010_kmod_4.4.x/Dockerfile index 9f74c4737..08a5af0e3 100644 --- a/test/cases/020_kernel/010_kmod_4.4.x/Dockerfile +++ b/test/cases/020_kernel/010_kmod_4.4.x/Dockerfile @@ -3,7 +3,7 @@ # In the last stage, it creates a package, which can be used for # testing. -FROM linuxkit/kernel:4.4.120 AS ksrc +FROM linuxkit/kernel:4.4.121 AS ksrc # Extract headers and compile module FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build diff --git a/test/cases/020_kernel/010_kmod_4.4.x/test.sh b/test/cases/020_kernel/010_kmod_4.4.x/test.sh index e00666616..2df6d8b06 100644 --- a/test/cases/020_kernel/010_kmod_4.4.x/test.sh +++ b/test/cases/020_kernel/010_kmod_4.4.x/test.sh @@ -19,7 +19,7 @@ clean_up() { trap clean_up EXIT # Make sure we have the latest kernel image -docker pull linuxkit/kernel:4.4.120 +docker pull linuxkit/kernel:4.4.121 # Build a package docker build -t ${IMAGE_NAME} . diff --git a/test/cases/020_kernel/010_kmod_4.4.x/test.yml b/test/cases/020_kernel/010_kmod_4.4.x/test.yml index 9f1e5a629..8cd355599 100644 --- a/test/cases/020_kernel/010_kmod_4.4.x/test.yml +++ b/test/cases/020_kernel/010_kmod_4.4.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.4.120 + image: linuxkit/kernel:4.4.121 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/011_kmod_4.9.x/Dockerfile b/test/cases/020_kernel/011_kmod_4.9.x/Dockerfile index 18dbb7125..66326d177 100644 --- a/test/cases/020_kernel/011_kmod_4.9.x/Dockerfile +++ b/test/cases/020_kernel/011_kmod_4.9.x/Dockerfile @@ -3,7 +3,7 @@ # In the last stage, it creates a package, which can be used for # testing. -FROM linuxkit/kernel:4.9.86 AS ksrc +FROM linuxkit/kernel:4.9.87 AS ksrc # Extract headers and compile module FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build diff --git a/test/cases/020_kernel/011_kmod_4.9.x/test.sh b/test/cases/020_kernel/011_kmod_4.9.x/test.sh index f947bc011..3fe7f5436 100644 --- a/test/cases/020_kernel/011_kmod_4.9.x/test.sh +++ b/test/cases/020_kernel/011_kmod_4.9.x/test.sh @@ -19,7 +19,7 @@ clean_up() { trap clean_up EXIT # Make sure we have the latest kernel image -docker pull linuxkit/kernel:4.9.86 +docker pull linuxkit/kernel:4.9.87 # Build a package docker build -t ${IMAGE_NAME} . diff --git a/test/cases/020_kernel/011_kmod_4.9.x/test.yml b/test/cases/020_kernel/011_kmod_4.9.x/test.yml index 86a776d46..b57a2160d 100644 --- a/test/cases/020_kernel/011_kmod_4.9.x/test.yml +++ b/test/cases/020_kernel/011_kmod_4.9.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.9.86 + image: linuxkit/kernel:4.9.87 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/016_kmod_4.14.x/Dockerfile b/test/cases/020_kernel/016_kmod_4.14.x/Dockerfile index 112ddb6ab..7b6118b69 100644 --- a/test/cases/020_kernel/016_kmod_4.14.x/Dockerfile +++ b/test/cases/020_kernel/016_kmod_4.14.x/Dockerfile @@ -3,7 +3,7 @@ # In the last stage, it creates a package, which can be used for # testing. -FROM linuxkit/kernel:4.14.24 AS ksrc +FROM linuxkit/kernel:4.14.26 AS ksrc # Extract headers and compile module FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build diff --git a/test/cases/020_kernel/016_kmod_4.14.x/test.sh b/test/cases/020_kernel/016_kmod_4.14.x/test.sh index edd7eb728..338fee81e 100644 --- a/test/cases/020_kernel/016_kmod_4.14.x/test.sh +++ b/test/cases/020_kernel/016_kmod_4.14.x/test.sh @@ -19,7 +19,7 @@ clean_up() { trap clean_up EXIT # Make sure we have the latest kernel image -docker pull linuxkit/kernel:4.14.24 +docker pull linuxkit/kernel:4.14.26 # Build a package docker build -t ${IMAGE_NAME} . diff --git a/test/cases/020_kernel/016_kmod_4.14.x/test.yml b/test/cases/020_kernel/016_kmod_4.14.x/test.yml index acff7942d..46991b2f5 100644 --- a/test/cases/020_kernel/016_kmod_4.14.x/test.yml +++ b/test/cases/020_kernel/016_kmod_4.14.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/017_kmod_4.15.x/Dockerfile b/test/cases/020_kernel/017_kmod_4.15.x/Dockerfile index 9da0a4ddf..82c15fbc6 100644 --- a/test/cases/020_kernel/017_kmod_4.15.x/Dockerfile +++ b/test/cases/020_kernel/017_kmod_4.15.x/Dockerfile @@ -3,7 +3,7 @@ # In the last stage, it creates a package, which can be used for # testing. -FROM linuxkit/kernel:4.15.7 AS ksrc +FROM linuxkit/kernel:4.15.9 AS ksrc # Extract headers and compile module FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build diff --git a/test/cases/020_kernel/017_kmod_4.15.x/test.sh b/test/cases/020_kernel/017_kmod_4.15.x/test.sh index 8090ec11f..ca2180c71 100644 --- a/test/cases/020_kernel/017_kmod_4.15.x/test.sh +++ b/test/cases/020_kernel/017_kmod_4.15.x/test.sh @@ -19,7 +19,7 @@ clean_up() { trap clean_up EXIT # Make sure we have the latest kernel image -docker pull linuxkit/kernel:4.15.7 +docker pull linuxkit/kernel:4.15.9 # Build a package docker build -t ${IMAGE_NAME} . diff --git a/test/cases/020_kernel/017_kmod_4.15.x/test.yml b/test/cases/020_kernel/017_kmod_4.15.x/test.yml index 686d25044..fde7e0666 100644 --- a/test/cases/020_kernel/017_kmod_4.15.x/test.yml +++ b/test/cases/020_kernel/017_kmod_4.15.x/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.15.7 + image: linuxkit/kernel:4.15.9 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/common.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/common.yml index df845e9de..1518788cd 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/common.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/common.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.4.120 + image: linuxkit/kernel:4.4.121 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/common.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/common.yml index 83eb9c9d1..2a8a7aeb8 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/common.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/common.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.9.86 + image: linuxkit/kernel:4.9.87 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/020_kernel/110_namespace/006_kernel-4.14.x/common.yml b/test/cases/020_kernel/110_namespace/006_kernel-4.14.x/common.yml index e95061172..d5ff341be 100644 --- a/test/cases/020_kernel/110_namespace/006_kernel-4.14.x/common.yml +++ b/test/cases/020_kernel/110_namespace/006_kernel-4.14.x/common.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/030_security/000_docker-bench/test.yml b/test/cases/030_security/000_docker-bench/test.yml index 025e85e63..7cdf9573b 100644 --- a/test/cases/030_security/000_docker-bench/test.yml +++ b/test/cases/030_security/000_docker-bench/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/030_security/010_ports/test.yml b/test/cases/030_security/010_ports/test.yml index 04a83315b..f3436ca31 100644 --- a/test/cases/030_security/010_ports/test.yml +++ b/test/cases/030_security/010_ports/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 page_poison=1" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/002_binfmt/test.yml b/test/cases/040_packages/002_binfmt/test.yml index a63304a5e..a3886e802 100644 --- a/test/cases/040_packages/002_binfmt/test.yml +++ b/test/cases/040_packages/002_binfmt/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/003_ca-certificates/test.yml b/test/cases/040_packages/003_ca-certificates/test.yml index b6ce83905..7d010cfa1 100644 --- a/test/cases/040_packages/003_ca-certificates/test.yml +++ b/test/cases/040_packages/003_ca-certificates/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/003_containerd/test.yml b/test/cases/040_packages/003_containerd/test.yml index c78f1812e..b1f64e97f 100644 --- a/test/cases/040_packages/003_containerd/test.yml +++ b/test/cases/040_packages/003_containerd/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/004_dhcpcd/test.yml b/test/cases/040_packages/004_dhcpcd/test.yml index ea36841d0..cb9f2a1cd 100644 --- a/test/cases/040_packages/004_dhcpcd/test.yml +++ b/test/cases/040_packages/004_dhcpcd/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/000_ext4/test-create.yml b/test/cases/040_packages/005_extend/000_ext4/test-create.yml index ff080d95b..794bfb7ff 100644 --- a/test/cases/040_packages/005_extend/000_ext4/test-create.yml +++ b/test/cases/040_packages/005_extend/000_ext4/test-create.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/000_ext4/test.yml b/test/cases/040_packages/005_extend/000_ext4/test.yml index 8dcb8a910..968ef0da4 100644 --- a/test/cases/040_packages/005_extend/000_ext4/test.yml +++ b/test/cases/040_packages/005_extend/000_ext4/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/001_btrfs/test-create.yml b/test/cases/040_packages/005_extend/001_btrfs/test-create.yml index 10dae55db..b95f02712 100644 --- a/test/cases/040_packages/005_extend/001_btrfs/test-create.yml +++ b/test/cases/040_packages/005_extend/001_btrfs/test-create.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/001_btrfs/test.yml b/test/cases/040_packages/005_extend/001_btrfs/test.yml index 976d68595..a475a5f1f 100644 --- a/test/cases/040_packages/005_extend/001_btrfs/test.yml +++ b/test/cases/040_packages/005_extend/001_btrfs/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/002_xfs/test-create.yml b/test/cases/040_packages/005_extend/002_xfs/test-create.yml index acf6adc68..6e2ef9e56 100644 --- a/test/cases/040_packages/005_extend/002_xfs/test-create.yml +++ b/test/cases/040_packages/005_extend/002_xfs/test-create.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/005_extend/002_xfs/test.yml b/test/cases/040_packages/005_extend/002_xfs/test.yml index 07074c48a..d50a88cd3 100644 --- a/test/cases/040_packages/005_extend/002_xfs/test.yml +++ b/test/cases/040_packages/005_extend/002_xfs/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/006_format_mount/000_auto/test.yml b/test/cases/040_packages/006_format_mount/000_auto/test.yml index 9dca0568f..9c0dd3c42 100644 --- a/test/cases/040_packages/006_format_mount/000_auto/test.yml +++ b/test/cases/040_packages/006_format_mount/000_auto/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/006_format_mount/001_by_label/test.yml b/test/cases/040_packages/006_format_mount/001_by_label/test.yml index 39cf155f3..5390ff416 100644 --- a/test/cases/040_packages/006_format_mount/001_by_label/test.yml +++ b/test/cases/040_packages/006_format_mount/001_by_label/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/006_format_mount/003_btrfs/test.yml b/test/cases/040_packages/006_format_mount/003_btrfs/test.yml index 681b1863c..27596b0e9 100644 --- a/test/cases/040_packages/006_format_mount/003_btrfs/test.yml +++ b/test/cases/040_packages/006_format_mount/003_btrfs/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/006_format_mount/004_xfs/test.yml b/test/cases/040_packages/006_format_mount/004_xfs/test.yml index 634847d0e..531b71965 100644 --- a/test/cases/040_packages/006_format_mount/004_xfs/test.yml +++ b/test/cases/040_packages/006_format_mount/004_xfs/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/006_format_mount/010_multiple/test.yml b/test/cases/040_packages/006_format_mount/010_multiple/test.yml index e6552e2d1..495866d04 100644 --- a/test/cases/040_packages/006_format_mount/010_multiple/test.yml +++ b/test/cases/040_packages/006_format_mount/010_multiple/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/013_mkimage/mkimage.yml b/test/cases/040_packages/013_mkimage/mkimage.yml index 83e5f6454..70828d730 100644 --- a/test/cases/040_packages/013_mkimage/mkimage.yml +++ b/test/cases/040_packages/013_mkimage/mkimage.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/013_mkimage/run.yml b/test/cases/040_packages/013_mkimage/run.yml index 929c234ec..5f2cfed16 100644 --- a/test/cases/040_packages/013_mkimage/run.yml +++ b/test/cases/040_packages/013_mkimage/run.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/019_sysctl/test.yml b/test/cases/040_packages/019_sysctl/test.yml index 5f132668d..9763360b2 100644 --- a/test/cases/040_packages/019_sysctl/test.yml +++ b/test/cases/040_packages/019_sysctl/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/cases/040_packages/023_wireguard/test.yml b/test/cases/040_packages/023_wireguard/test.yml index 448341818..a222331b7 100644 --- a/test/cases/040_packages/023_wireguard/test.yml +++ b/test/cases/040_packages/023_wireguard/test.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0 console=ttyAMA0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/hack/test-ltp.yml b/test/hack/test-ltp.yml index 7c65304c7..ac5efe562 100644 --- a/test/hack/test-ltp.yml +++ b/test/hack/test-ltp.yml @@ -1,5 +1,5 @@ kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a diff --git a/test/hack/test.yml b/test/hack/test.yml index d94e8d178..cb9330023 100644 --- a/test/hack/test.yml +++ b/test/hack/test.yml @@ -1,7 +1,7 @@ # FIXME: This should use the minimal example # We continue to use the kernel-config-test as CI is currently expecting to see a success message kernel: - image: linuxkit/kernel:4.14.24 + image: linuxkit/kernel:4.14.26 cmdline: "console=ttyS0" init: - linuxkit/init:b212cfeb4bb6330e0a7547d8010fe2e8489b677a