blob: 0d6098eabf8115d19c3daee64a097a10f9b63d8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/configure.ac b/configure.ac
index ff0e171..0660eea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ if test -n "$kbuilddir"; then
echo "WARNING: You are trying a newer kernel. Results may vary. :-)";
elif test "$kmajor" -eq 3; then
:;
- elif test "$kmajor" -eq 2 -a "$kminor" -ge 29; then
+ elif test "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -ge 29; then
:;
else
echo "WARNING: That kernel version is not supported.";
|