From e4b5cef8f05529aaae4e0d8bfba8d808dced92bd Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 4 Jan 2017 02:44:43 +0100 Subject: [PATCH] build: mark Linux 4.10 as supported --- configure.ac | 4 ++-- doc/changelog.txt | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 085a055..64ab968 100644 --- a/configure.ac +++ b/configure.ac @@ -57,9 +57,9 @@ if test -n "$kbuilddir"; then echo "WARNING: Version detection did not succeed. Continue at own luck."; else echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir"; - if test "$kmajor" -gt 4 -o "$kmajor" -eq 7 -a "$kminor" -gt 3; then + if test "$kmajor" -gt 4 -o "$kmajor" -eq 4 -a "$kminor" -gt 10; then echo "WARNING: That kernel version is not officially supported yet. Continue at own luck."; - elif test "$kmajor" -eq 4 -a "$kminor" -le 3; then + elif test "$kmajor" -eq 4 -a "$kminor" -le 10; then :; elif test "$kmajor" -eq 3 -a "$kminor" -ge 7; then :; diff --git a/doc/changelog.txt b/doc/changelog.txt index 696c141..a56a9ee 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -1,6 +1,8 @@ HEAD ==== +Enhancements: +- support for Linux up to 4.10 v2.11 (2016-05-20)