summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorGreg Rose <gvrose8192@gmail.com>2020-10-12 13:25:09 -0700
committerIlya Maximets <i.maximets@ovn.org>2020-10-17 17:32:06 +0200
commit44722d58c40b030a4e962ded447aa9670b6573b5 (patch)
tree90d04b95bafe73c4c7dd62bc088ac2d284de55e4 /acinclude.m4
parentafe7210161854078e9f1af2a575d9acacc5a0101 (diff)
downloadopenvswitch-44722d58c40b030a4e962ded447aa9670b6573b5.tar.gz
acinclude: Enable builds up to Linux 5.8
Allow building openvswitch against Linux kernels up to and including version 5.8. Acked-by: Yi-Hung Wei <yihung.wei@gmail.com> Signed-off-by: Greg Rose <gvrose8192@gmail.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 3d56510a0..1460289ca 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -167,10 +167,10 @@ AC_DEFUN([OVS_CHECK_LINUX], [
AC_MSG_RESULT([$kversion])
if test "$version" -ge 5; then
- if test "$version" = 5 && test "$patchlevel" -le 5; then
+ if test "$version" = 5 && test "$patchlevel" -le 8; then
: # Linux 5.x
else
- AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 5.5.x is not supported (please refer to the FAQ for advice)])
+ AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 5.8.x is not supported (please refer to the FAQ for advice)])
fi
elif test "$version" = 4; then
: # Linux 4.x