add a macro to compare kernel patch versions and use it for crypto and watchdog changes in 2.6.24+ kernels (closes: #3402)

SVN-Revision: 11115
This commit is contained in:
Nicolas Thill
2008-05-11 20:56:51 +00:00
parent f060405005
commit e93e293b41
3 changed files with 13 additions and 4 deletions

View File

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