Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Aug 2020 19:05:51 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r364216 - stable/12/sys/compat/linux
Message-ID:  <202008131905.07DJ5pCM006665@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,		\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008131905.07DJ5pCM006665>