1#
2# Copyright (C) 2008 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=avila-wdt
12PKG_RELEASE:=1
13
14include $(INCLUDE_DIR)/package.mk
15
16define KernelPackage/avila-wdt
17  SUBMENU:=Other modules
18  TITLE:=GPIO hardware watchdog driver for modified Avila boards
19  DEPENDS:=@GPIO_SUPPORT @TARGET_ixp4xx
20  FILES:=$(PKG_BUILD_DIR)/avila-wdt.ko
21  AUTOLOAD:=$(call AutoLoad,10,avila-wdt)
22endef
23
24MAKE_OPTS:= \
25	ARCH="$(LINUX_KARCH)" \
26	CROSS_COMPILE="$(TARGET_CROSS)" \
27	SUBDIRS="$(PKG_BUILD_DIR)"
28
29define Build/Prepare
30	mkdir -p $(PKG_BUILD_DIR)
31	$(CP) ./src/* $(PKG_BUILD_DIR)/
32endef
33
34define Build/Compile
35	$(MAKE) -C "$(LINUX_DIR)" \
36		$(MAKE_OPTS) \
37		modules
38endef
39
40$(eval $(call KernelPackage,avila-wdt))
41