summaryrefslogtreecommitdiffstats
path: root/include/kernel.mk
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-05-11 20:56:51 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-05-11 20:56:51 +0000
commit0ec5192c336f5bf971e6dd02031360e2f157af51 (patch)
treee6a114118dd9c4198851a6b807c42cc48be322a7 /include/kernel.mk
parent5d83871c7429ea9db8b4e5644a46ad0d587c6c84 (diff)
add a macro to compare kernel patch versions and use it for crypto and watchdog changes in 2.6.24+ kernels (closes: #3402)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11115 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/kernel.mk')
-rw-r--r--include/kernel.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/kernel.mk b/include/kernel.mk
index 52355dcdd..b80c3b63f 100644
--- a/include/kernel.mk
+++ b/include/kernel.mk
@@ -145,3 +145,7 @@ define AutoLoad
add_module $(1) "$(2)";
endef
+define CompareKernelPatchVer
+ $(shell [ $$(echo $(1) | tr . 0) -$(2) $$(echo $(3) | tr . 0) ] && echo 1 || echo 0)
+endef
+