2008-03-31 11:04:27 +03:00
|
|
|
#
|
2010-05-16 16:46:57 +03:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-09-21 12:55:03 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-09-21 12:55:03 +03:00
|
|
|
|
2006-11-03 23:58:08 +02:00
|
|
|
PKG_NAME:=broadcom-diag
|
2010-09-13 04:35:39 +03:00
|
|
|
PKG_RELEASE:=10
|
2005-09-21 12:55:03 +03:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-09-21 12:55:03 +03:00
|
|
|
|
2006-11-03 23:58:08 +02:00
|
|
|
define KernelPackage/diag
|
2007-01-20 04:01:53 +02:00
|
|
|
SUBMENU:=Other modules
|
2010-06-26 23:43:41 +03:00
|
|
|
DEPENDS:=@TARGET_brcm47xx
|
2006-09-23 16:54:49 +03:00
|
|
|
TITLE:=Driver for router LEDs and Buttons
|
2010-07-12 17:06:13 +03:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/diag.ko
|
2006-06-18 16:04:58 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
2006-06-17 19:56:12 +03:00
|
|
|
endef
|
2005-09-21 12:55:03 +03:00
|
|
|
|
2006-06-17 19:56:12 +03:00
|
|
|
define Build/Compile
|
2006-06-18 16:04:58 +03:00
|
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
2007-03-14 03:19:24 +02:00
|
|
|
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
2006-06-18 16:04:58 +03:00
|
|
|
modules
|
2006-06-17 19:56:12 +03:00
|
|
|
endef
|
2008-03-31 11:04:27 +03:00
|
|
|
|
2006-11-03 23:58:08 +02:00
|
|
|
$(eval $(call KernelPackage,diag))
|