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