forked from Openwrt/openwrt
243a7256c1
Make use of KERNEL_MAKE in kernel packages were easily possible. This moves some more code to common places and reduces the number of lines. It is defined like this: KERNEL_MAKE = $(MAKE) $(KERNEL_MAKEOPTS) KERNEL_MAKEOPTS = -C $(LINUX_DIR) $(KERNEL_MAKE_FLAGS) Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
32 lines
683 B
Makefile
32 lines
683 B
Makefile
#
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=rtc-rv5c386a
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/rtc-rv5c386a
|
|
SUBMENU:=Other modules
|
|
DEPENDS:=@TARGET_bcm47xx @!IN_SDK
|
|
TITLE:=Driver for RTC RV5C386A (used in WL-700gE and WL-HDD)
|
|
AUTOLOAD:=$(call AutoLoad,70,rtc)
|
|
FILES:=$(PKG_BUILD_DIR)/rtc.ko
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) \
|
|
M="$(PKG_BUILD_DIR)" \
|
|
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,rtc-rv5c386a))
|