[package] replace some -I & -L flags with $(TARGET_CPPFLAGS) & $(TARGET_LDFLAGS)...
[openwrt-10.03/.git] / package / broadcom-wl / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=broadcom-wl
13 PKG_VERSION:=4.150.10.5.3
14 PKG_RELEASE:=2
15 WLC_VERSION:=0.1
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources
19 PKG_MD5SUM:=cc615fd49719eea8bce5b2a8813783f3
20
21 WL_WEXT=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/broadcom-wl/Default
26   SECTION:=kernel
27   CATEGORY:=Kernel modules
28   DEPENDS:=@PACKAGE_kmod-brcm-wl||PACKAGE_kmod-brcm-wl-mimo
29   SUBMENU:=Proprietary BCM43xx WiFi driver
30   SUBMENUDEP:=@TARGET_brcm_2_4
31 endef
32
33 define KernelPackage/brcm-wl/Default
34   $(call Package/broadcom-wl/Default)
35   SECTION:=kernel
36   DEPENDS:=@TARGET_brcm_2_4 +wireless-tools
37   TITLE:=Kernel driver for BCM43xx chipsets
38   FILES:=$(PKG_BUILD_DIR)/driver/wl$(1).o
39   AUTOLOAD:=$(call AutoLoad,30,wl$(1))
40 endef
41
42 define KernelPackage/brcm-wl/Default/description
43  This package contains the proprietary wireless driver for the Broadcom 
44  BCM43xx chipset.
45 endef
46
47 define KernelPackage/brcm-wl
48 $(call KernelPackage/brcm-wl/Default,)
49   TITLE+= (normal version)
50 endef
51
52 define KernelPackage/brcm-wl/description
53 $(call KernelPackage/brcm-wl/Default/description)
54 endef
55
56 define KernelPackage/brcm-wl-mimo
57 $(call KernelPackage/brcm-wl/Default,_mimo)
58   TITLE+= (MIMO version)
59 endef
60
61 define KernelPackage/brcm-wl-mimo/description
62 $(call KernelPackage/brcm-wl/Default/description)
63 endef
64
65 define KernelPackage/wlcompat/Default
66   $(call KernelPackage/brcm-wl/Default,)
67   TITLE:=Kernel driver for BCM43xx chipsets
68   FILES:=$(PKG_BUILD_DIR)/wlcompat/wlcompat$(1).o
69 endef
70
71 define KernelPackage/wlcompat
72 $(call KernelPackage/wlcompat/Default,)
73   AUTOLOAD:=$(call AutoLoad,50,wlcompat)
74 endef
75
76 define KernelPackage/wlcompat/description
77  This package contains a wrapper module, that provides Wireless Extension 
78  support for the proprietary Broadcom wl module.
79 endef
80
81 define KernelPackage/wlcompat-debug
82 $(call KernelPackage/wlcompat/Default,-debug)
83   TITLE+= (debug)
84   AUTOLOAD:=
85 endef
86
87 define KernelPackage/wlcompat-debug/description
88 $(call KernelPackage/wlcompat/description)
89  This is the debugging version.
90 endef
91
92 define Package/wlc
93 $(call Package/broadcom-wl/Default)
94   TITLE:=wl driver setup utility
95 endef
96
97 define Package/wlc/description
98  This package contains an utility for initializing the proprietary Broadcom 
99  wl driver.
100 endef
101
102 define Package/wl
103 $(call Package/broadcom-wl/Default)
104   DEPENDS+= +nvram
105   TITLE:=Proprietary Broadcom wl driver config utility
106 endef
107
108 define Package/wl/description
109  This package contains the proprietary utility (wl) for configuring the 
110  proprietary Broadcom wl driver.
111 endef
112
113 define Package/nas
114 $(call Package/broadcom-wl/Default)
115   DEPENDS+= +nvram 
116   TITLE:=Proprietary Broadcom WPA/WPA2 authenticator
117 endef
118
119 define Package/nas/description
120  This package contains the proprietary WPA/WPA2 authenticator (nas) for the 
121  proprietary Broadcom wl driver.
122 endef
123
124 MAKE_KMOD := $(MAKE) -C "$(LINUX_DIR)" \
125                 CROSS_COMPILE="$(TARGET_CROSS)" \
126                 ARCH="$(LINUX_KARCH)" \
127                 PATH="$(TARGET_PATH)" \
128                 SUBDIRS="$(PKG_BUILD_DIR)/kmod"
129
130 define Build/Prepare
131         $(call Build/Prepare/Default)
132         $(CP) src/* $(PKG_BUILD_DIR)/
133 endef
134
135 define Build/Compile
136         # Compile the kernel part
137         $(MAKE_KMOD) \
138                 SUBDIRS="$(PKG_BUILD_DIR)/driver" \
139                 modules
140         $(MAKE_KMOD) \
141                 SUBDIRS="$(PKG_BUILD_DIR)/driver" \
142                 MOD_NAME="_mimo" \
143                 modules
144         $(MAKE_KMOD) \
145                 SUBDIRS="$(PKG_BUILD_DIR)/wlcompat" \
146                 $(if $(WL_WEXT),WL_WEXT=1) \
147                 modules
148         $(MAKE_KMOD) \
149                 SUBDIRS="$(PKG_BUILD_DIR)/wlcompat" \
150                 DEBUG=1 \
151                 $(if $(WL_WEXT),WL_WEXT=1) \
152                 modules
153
154         # Compile wlc
155         $(MAKE) -C $(PKG_BUILD_DIR)/wlc \
156                 $(TARGET_CONFIGURE_OPTS) \
157                 CFLAGS="$(TARGET_CFLAGS)" \
158                 all
159         # Compile libshared
160         $(MAKE) -C $(PKG_BUILD_DIR)/router/shared \
161                 $(TARGET_CONFIGURE_OPTS) \
162                 CFLAGS="$(TARGET_CFLAGS) -I. -I$(PKG_BUILD_DIR)/include -Dlinux=1" \
163                 all
164         $(TARGET_CC) -o $(PKG_BUILD_DIR)/nas $(PKG_BUILD_DIR)/nas_exe.o $(TARGET_LDFLAGS) -lnvram $(PKG_BUILD_DIR)/router/shared/libshared.a
165         $(TARGET_CC) -o $(PKG_BUILD_DIR)/wl $(PKG_BUILD_DIR)/wl_exe.o
166 endef
167
168 define Build/InstallDev
169         $(INSTALL_DIR) $(1)/usr/lib
170         $(CP) $(PKG_BUILD_DIR)/router/shared/libshared.a $(1)/usr/lib/
171 endef
172
173 define Package/wlc/install
174         $(CP) ./files/* $(1)/
175         $(INSTALL_DIR) $(1)/sbin
176         $(INSTALL_BIN) $(PKG_BUILD_DIR)/wlc/wlc $(1)/sbin/
177 endef
178
179 define Package/wl/install
180         $(INSTALL_DIR) $(1)/usr/sbin
181         $(INSTALL_BIN) $(PKG_BUILD_DIR)/wl $(1)/usr/sbin/
182 endef
183
184 define Package/nas/install
185         $(INSTALL_DIR) $(1)/usr/sbin
186         $(INSTALL_BIN) $(PKG_BUILD_DIR)/nas $(1)/usr/sbin/
187         ln -sf nas $(1)/usr/sbin/nas4not
188         ln -sf nas $(1)/usr/sbin/nas4wds
189 endef
190
191 $(eval $(call KernelPackage,brcm-wl))
192 $(eval $(call KernelPackage,brcm-wl-mimo))
193 $(eval $(call KernelPackage,wlcompat))
194 $(eval $(call KernelPackage,wlcompat-debug))
195 $(eval $(call BuildPackage,wlc))
196 $(eval $(call BuildPackage,wl))
197 $(eval $(call BuildPackage,nas))