svn commit: r364216 - stable/12/sys/compat/linux

Edward Tomasz Napierala trasz at FreeBSD.org
Thu Aug 13 19:05:52 UTC 2020


Author: trasz
Date: Thu Aug 13 19:05:51 2020
New Revision: 364216
URL: https://svnweb.freebsd.org/changeset/base/364216

Log:
  MFC r351723:
  
  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".
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/sys/compat/linux/linux_mib.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/compat/linux/linux_mib.h
==============================================================================
--- stable/12/sys/compat/linux/linux_mib.h	Thu Aug 13 19:03:32 2020	(r364215)
+++ stable/12/sys/compat/linux/linux_mib.h	Thu Aug 13 19:05:51 2020	(r364216)
@@ -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,		\


More information about the svn-src-stable-12 mailing list