modules.mk 565 B

1234567891011121314151617181920
  1. #
  2. # Copyright (C) 2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. define KernelPackage/mcs814x-wdt
  7. SUBMENU:=$(OTHER_MENU)
  8. DEPENDS:=@TARGET_mcs814x
  9. TITLE:=MCS814x watchdog driver
  10. KCONFIG:=CONFIG_MCS814X_WATCHDOG
  11. FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/mcs814x_wdt.ko
  12. AUTOLOAD:=$(call AutoLoad,50,mcs814x_wdt)
  13. endef
  14. define KernelPackage/mcs814x-wdt/description
  15. Kernel module for the Moschip MCS814x watchdog timer.
  16. endef
  17. $(eval $(call KernelPackage,mcs814x-wdt))