From 45abe7c2971411d36d809c650d37fcb4a7d78470 Mon Sep 17 00:00:00 2001 From: krishjainx Date: Fri, 2 Jun 2023 12:50:38 +0200 Subject: [PATCH 1/2] sys-kernel/coreos-modules: Enable TLS support as a module Allow one to TLS software offload to the kernel. Configured as module to not increase default kernel size for something rarely used. --- .../sys-kernel/coreos-modules/files/commonconfig-6.1 | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-modules/files/commonconfig-6.1 b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-modules/files/commonconfig-6.1 index b32a5309d8..961add0da3 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-modules/files/commonconfig-6.1 +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/coreos-modules/files/commonconfig-6.1 @@ -885,6 +885,7 @@ CONFIG_TCP_CONG_HYBLA=m # CONFIG_TCP_CONG_WESTWOOD is not set CONFIG_TCP_MD5SIG=y CONFIG_TIGON3=m +CONFIG_TLS=m CONFIG_TMPFS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_TRANSPARENT_HUGEPAGE=y From 427c1849653d70998eca815655b3d13f45608bac Mon Sep 17 00:00:00 2001 From: krishjainx Date: Thu, 15 Jun 2023 17:33:12 +0200 Subject: [PATCH 2/2] Add changelog --- changelog/changes/2023-06-15-kernel-tls.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/changes/2023-06-15-kernel-tls.md diff --git a/changelog/changes/2023-06-15-kernel-tls.md b/changelog/changes/2023-06-15-kernel-tls.md new file mode 100644 index 0000000000..a8f0ee2105 --- /dev/null +++ b/changelog/changes/2023-06-15-kernel-tls.md @@ -0,0 +1 @@ +- Added TLS Kernel module ([scripts#865](https://github.com/flatcar/scripts/pull/865))