summaryrefslogtreecommitdiffstats
path: root/package/wlcompat/Makefile
blob: 482ec4a2d276d7b6f6af52d235a91cdd02c76926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=kmod-wlcompat
PKG_RELEASE:=6

include $(INCLUDE_DIR)/package.mk

define KernelPackage/wlcompat/Default
  SUBMENU:=Proprietary BCM43xx WiFi driver
  SUBMENUDEP:=@TARGET_BRCM_2_4
  DEPENDS:=@TARGET_BRCM_2_4 @PACKAGE_kmod-brcm-wl||PACKAGE_kmod-brcm-wl-mimo +wireless-tools
  TITLE:=Broadcom wl wrapper module
endef

define KernelPackage/wlcompat/Default/description
 This package contains a wrapper module, that provides Wireless Extension 
 support for the proprietary Broadcom wl module.
endef

define KernelPackage/wlcompat
$(call KernelPackage/wlcompat/Default)
  FILES:=$(PKG_BUILD_DIR)/wlcompat.o
  AUTOLOAD:=$(call AutoLoad,50,wlcompat)
endef

define KernelPackage/wlcompat/description
$(call KernelPackage/wlcompat/Default/description)
endef

define KernelPackage/wlcompat-debug
$(call KernelPackage/wlcompat/Default)
  TITLE+= (debug)
  FILES:=$(PKG_BUILD_DIR)/wlcompat-debug.o
endef

define KernelPackage/wlcompat-debug/description
$(call KernelPackage/wlcompat/Default/description)
 This is a debugging version.
endef

define Build/Prepare
	mkdir -p $(PKG_BUILD_DIR)
	$(CP) ./src/* $(PKG_BUILD_DIR)/
endef

define Build/Compile
	$(MAKE) -C "$(LINUX_DIR)" \
		CROSS_COMPILE="$(TARGET_CROSS)" \
		ARCH="$(LINUX_KARCH)" \
		SUBDIRS="$(PKG_BUILD_DIR)" \
		EXTRA_CFLAGS="-DDEBUG -I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(PKG_BUILD_DIR)/include" \
		modules
	mv $(PKG_BUILD_DIR)/wlcompat.o $(PKG_BUILD_DIR)/wlcompat-debug.o
	$(MAKE) -C "$(LINUX_DIR)" \
		CROSS_COMPILE="$(TARGET_CROSS)" \
		ARCH="$(LINUX_KARCH)" \
		SUBDIRS="$(PKG_BUILD_DIR)" \
		EXTRA_CFLAGS="-I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(PKG_BUILD_DIR)/include" \
		modules
endef

$(eval $(call KernelPackage,wlcompat))
$(eval $(call KernelPackage,wlcompat-debug))