diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-02-06 07:41:04 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-02-06 07:41:04 +0000 |
commit | 4a6f9940dded967459ef4c558005865b224a6085 (patch) | |
tree | 4584b5128633c571dcaa43e4af0cb21ef6eb23b0 /package | |
parent | 6f3a2aec56a638820124806bec7a30fe0b49bf23 (diff) | |
download | upstream-4a6f9940dded967459ef4c558005865b224a6085.tar.gz upstream-4a6f9940dded967459ef4c558005865b224a6085.tar.bz2 upstream-4a6f9940dded967459ef4c558005865b224a6085.zip |
add a workaround for watchdog path changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10403 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/modules/other.mk | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 59d0e92081..5f82c8a66f 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -230,21 +230,23 @@ endef $(eval $(call KernelPackage,mmc)) +# XXX: added a workaround for watchdog path changes +ifeq ($(KERNEL),2.4) + WATCHDOG_DIR=char +endif +ifeq ($(KERNEL_PATCHVER),2.6.24) + WATCHDOG_DIR=watchdog +endif +WATCHDOG_DIR?=char/watchdog + define KernelPackage/softdog SUBMENU:=$(OTHER_MENU) TITLE:=Software watchdog driver KCONFIG:=CONFIG_SOFT_WATCHDOG + FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/softdog.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,50,softdog) endef -define KernelPackage/softdog/2.4 - FILES:=$(LINUX_DIR)/drivers/char/softdog.o -endef - -define KernelPackage/softdog/2.6 - FILES:=$(LINUX_DIR)/drivers/char/watchdog/softdog.ko -endef - define KernelPackage/softdog/description Software watchdog driver endef |