diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-05-11 20:56:51 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-05-11 20:56:51 +0000 |
commit | e93e293b4159df8beafa1d0cb219197dd6a61402 (patch) | |
tree | df9e4258d6297c4d68f9fbc3c3382a104fb1ec3f /package/kernel/modules/other.mk | |
parent | f06040500529f4f27e11a9f72622750621bc57c9 (diff) | |
download | mtk-20170518-e93e293b4159df8beafa1d0cb219197dd6a61402.zip mtk-20170518-e93e293b4159df8beafa1d0cb219197dd6a61402.tar.gz mtk-20170518-e93e293b4159df8beafa1d0cb219197dd6a61402.tar.bz2 |
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
Diffstat (limited to 'package/kernel/modules/other.mk')
-rw-r--r-- | package/kernel/modules/other.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index bf67464..482c06c 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -270,7 +270,7 @@ $(eval $(call KernelPackage,mmc-at91)) ifeq ($(KERNEL),2.4) WATCHDOG_DIR=char endif -ifeq ($(KERNEL_PATCHVER),2.6.24) +ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.24)),1) WATCHDOG_DIR=watchdog endif WATCHDOG_DIR?=char/watchdog |