2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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
|
|
|
# $Id$
|
|
|
|
|
|
|
|
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
|
2007-09-07 23:41:57 +03:00
|
|
|
PKG_RELEASE:=2
|
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
|
2007-09-08 22:55:42 +03:00
|
|
|
DEPENDS:=@TARGET_brcm_2_4||TARGET_brcm47xx
|
2006-09-23 16:54:49 +03:00
|
|
|
TITLE:=Driver for router LEDs and Buttons
|
2006-11-03 23:58:08 +02:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/diag.$(LINUX_KMOD_SUFFIX)
|
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
|
|
|
|
2007-09-07 15:54:24 +03:00
|
|
|
ifeq ($(BOARD),brcm-2.4)
|
2007-09-08 22:55:42 +03:00
|
|
|
BUILDFLAGS=-DBCMDRIVER -I$(LINUX_DIR)/arch/mips/bcm947xx/include -DLINUX_2_4
|
2007-03-14 03:19:24 +02:00
|
|
|
endif
|
|
|
|
|
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
|
2005-09-21 12:55:03 +03:00
|
|
|
|
2006-11-03 23:58:08 +02:00
|
|
|
$(eval $(call KernelPackage,diag))
|