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