build: mark Linux 4.10 as supported

This commit is contained in:
Jan Engelhardt
2017-01-04 02:44:43 +01:00
parent a8af97b8fa
commit e4b5cef8f0
2 changed files with 4 additions and 2 deletions

View File

@@ -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
:;

View File

@@ -1,6 +1,8 @@
HEAD
====
Enhancements:
- support for Linux up to 4.10
v2.11 (2016-05-20)