aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_mib.h
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2019-09-02 18:10:35 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2019-09-02 18:10:35 +0000
commit1d3a302b4ab3f68ca15d3353ac97bb255a6ae540 (patch)
tree34a4c3a7b59b18cb7b842ff04f10375c8e090d8f /sys/compat/linux/linux_mib.h
parent31b11bb3f235b4b7e5a357eb4a27a2e78351e254 (diff)
downloadsrc-1d3a302b4ab3f68ca15d3353ac97bb255a6ae540.tar.gz
src-1d3a302b4ab3f68ca15d3353ac97bb255a6ae540.zip
Bump Linux version to 3.2.0. Without it, binaries linked against
glibc 2.24 and up (eg Ubuntu 19.04) fail with "FATAL: kernel too old". This alone is not enough to make newer binaries actually work; fix/hack/workaround is pending review at https://reviews.freebsd.org/D20687. Reviewed by: emaste MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D20757
Notes
Notes: svn path=/head/; revision=351723
Diffstat (limited to 'sys/compat/linux/linux_mib.h')
-rw-r--r--sys/compat/linux/linux_mib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_mib.h b/sys/compat/linux/linux_mib.h
index 2fc32c145f45..d5ced52e3398 100644
--- a/sys/compat/linux/linux_mib.h
+++ b/sys/compat/linux/linux_mib.h
@@ -46,9 +46,9 @@ int linux_get_oss_version(struct thread *td);
int linux_kernver(struct thread *td);
-#define LINUX_KVERSION 2
-#define LINUX_KPATCHLEVEL 6
-#define LINUX_KSUBLEVEL 36
+#define LINUX_KVERSION 3
+#define LINUX_KPATCHLEVEL 2
+#define LINUX_KSUBLEVEL 0
#define LINUX_KERNVER(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#define LINUX_VERSION_CODE LINUX_KERNVER(LINUX_KVERSION, \