build: support for Linux 3.13

This commit is contained in:
Jan Engelhardt
2014-01-09 10:25:40 +01:00
parent 991c0cf4cf
commit 7fbbd0401e
2 changed files with 5 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ if test -n "$kbuilddir"; then
echo "WARNING: Version detection did not succeed. Continue at own luck."; echo "WARNING: Version detection did not succeed. Continue at own luck.";
else else
echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir"; echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
if test "$kmajor" -gt 3 -o "$kmajor" -eq 3 -a "$kminor" -gt 10; then if test "$kmajor" -gt 3 -o "$kmajor" -eq 3 -a "$kminor" -gt 13; then
echo "WARNING: That kernel version is not officially supported yet. Continue at own luck."; echo "WARNING: That kernel version is not officially supported yet. Continue at own luck.";
elif test "$kmajor" -eq 3 -a "$kminor" -ge 7; then elif test "$kmajor" -eq 3 -a "$kminor" -ge 7; then
:; :;

View File

@@ -1,8 +1,11 @@
HEAD HEAD
==== ====
Changes Enhancements:
- Support for Linux 3.13
Changes:
- remove unmaintained RAWSNAT/RAWDNAT code - remove unmaintained RAWSNAT/RAWDNAT code
- remove unused parts of compat_xtables that served Linux <3.7
v2.3 (2013-06-18) v2.3 (2013-06-18)