Date: Wed, 13 Jan 2021 10:02:29 GMT From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a339b4223a4f - main - linux: bump the default version from 3.10.0 to 3.17.0 Message-ID: <202101131002.10DA2TIU035721@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=a339b4223a4fd7cddbd691302d2eeeddc045415a commit a339b4223a4fd7cddbd691302d2eeeddc045415a Author: Edward Tomasz Napierala <trasz@FreeBSD.org> AuthorDate: 2021-01-13 09:59:08 +0000 Commit: Edward Tomasz Napierala <trasz@FreeBSD.org> CommitDate: 2021-01-13 10:02:16 +0000 linux: bump the default version from 3.10.0 to 3.17.0 This is required for Qt5, as found in Ubuntu Focal. The library contains the minimum kernel version encoded in an ELF note; this makes rtld ignore it altogether, with a confusing error message. Without it, things fail like this: $ konsole: error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or directory For reference, the Qt kernel version requirements can be found at: https://github.com/qt/qtbase/blob/dev/src/corelib/global/minimum-linux_p.h Sponsored by: The FreeBSD Foundation Reviewed By: emaste Differential Revision: https://reviews.freebsd.org/D28105 --- sys/compat/linux/linux_mib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_mib.h b/sys/compat/linux/linux_mib.h index bef21758acde..0a1baec39826 100644 --- a/sys/compat/linux/linux_mib.h +++ b/sys/compat/linux/linux_mib.h @@ -47,7 +47,7 @@ int linux_get_oss_version(struct thread *td); int linux_kernver(struct thread *td); #define LINUX_KVERSION 3 -#define LINUX_KPATCHLEVEL 10 +#define LINUX_KPATCHLEVEL 17 #define LINUX_KSUBLEVEL 0 #define LINUX_KERNVER(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101131002.10DA2TIU035721>