From b46d250656794e63a2946c481fda29271342dd1a Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 21 Feb 2022 08:32:32 -0300 Subject: Remove kernel version check The kernel version check is used to avoid glibc to run on older kernels where some syscall are not available and fallback code are not enabled to handle graciously fail. However, it does not prevent if the kernel does not correctly advertise its version through vDSO note, uname or procfs. Also kernel version checks are sometime not desirable by users, where they want to deploy on different system with different kernel version knowing the minimum set of syscall is always presented on such systems. The kernel version check has been removed along with the LD_ASSUME_KERNEL environment variable. The minimum kernel used to built glibc is still provided through NT_GNU_ABI_TAG ELF note and also printed when libc.so is issued. Checked on x86_64-linux-gnu. --- NEWS | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index ef8ac4a..e4fbd96 100644 --- a/NEWS +++ b/NEWS @@ -22,6 +22,11 @@ Deprecated and removed features, and other changes affecting compatibility: removal of the LD_TRACE_PRELINKING, and LD_USE_LOAD_BIAS, environment variables and their functionality in the dynamic loader. +* The Linux kernel version check has been removed along with the + LD_ASSUME_KERNEL environment variable. The minimum kernel used to built + glibc is still provided through NT_GNU_ABI_TAG ELF note and also printed + when libc.so is issued directly. + Changes to build and runtime requirements: [Add changes to build and runtime requirements here] -- cgit v1.1