make-binaries: Set kernel version for all builds

Specify the same min. supported kernel version for builds against musl
libc and glibc.
This commit is contained in:
Holger Weiss 2023-07-23 14:49:07 +02:00
parent 8288774787
commit 8a740d5087
1 changed files with 1 additions and 1 deletions

View File

@ -258,6 +258,7 @@ create_common_config()
CT_CC_LANG_CXX=y
CT_ARCH_64=y
CT_KERNEL_LINUX=y
CT_LINUX_V_3_16=y
CT_LOG_PROGRESS_BAR=n
EOF
}
@ -271,7 +272,6 @@ create_gnu_config()
create_common_config "$file"
cat >>"$file" <<-'EOF'
CT_LINUX_V_3_16=y
CT_GLIBC_V_2_19=y
CT_GLIBC_KERNEL_VERSION_NONE=y
EOF