Acked-by: Yi-Hung Wei <[email protected]>
Signed-off-by: Greg Rose <[email protected]>
---
V4 - Fix up the error message indicating that kernels greater than
5.5 are not supported.
---
acinclude.m4 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/acinclude.m4 b/acinclude.m4
index 9338af9..03d3484 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -151,10 +151,10 @@ AC_DEFUN([OVS_CHECK_LINUX], [
AC_MSG_RESULT([$kversion])
if test "$version" -ge 5; then
- if test "$version" = 5 && test "$patchlevel" -le 0; then
+ if test "$version" = 5 && test "$patchlevel" -le 5; then
: # Linux 5.x
else
- AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version
newer than 5.0.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.5.x is not supported (please refer to the FAQ for advice)])
fi
elif test "$version" = 4; then
: # Linux 4.x
--
1.8.3.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev