build mimo version of the broadcom wl driver as well
SVN-Revision: 4013
This commit is contained in:
parent
5ddbc45eda
commit
1e5f02e9d0
2 changed files with 36 additions and 14 deletions
|
@ -27,8 +27,16 @@ define Package/kmod-brcm-wl
|
||||||
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(PKG_RELEASE)
|
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(PKG_RELEASE)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/wlc
|
define Package/kmod-brcm-wl-mimo
|
||||||
$(call Package/kmod-brcm-wl)
|
$(call Package/kmod-brcm-wl)
|
||||||
|
DEFAULT:=m if ALL
|
||||||
|
MENU:=
|
||||||
|
TITLE:=Proprietary BCM43xx WiFi driver (MIMO version)
|
||||||
|
DESCRIPTION:=Proprietary Wireless driver for the Broadcom BCM43xx chipset (MIMO version)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/wlc
|
||||||
|
$(call Package/kmod-brcm-wl-mimo)
|
||||||
DEPENDS:=kmod-brcm-wl
|
DEPENDS:=kmod-brcm-wl
|
||||||
TITLE:=Setup utility
|
TITLE:=Setup utility
|
||||||
DESCRIPTION:=Utility for initializing the Broadcom wl driver
|
DESCRIPTION:=Utility for initializing the Broadcom wl driver
|
||||||
|
@ -53,13 +61,18 @@ define Build/Prepare
|
||||||
$(CP) src/* $(PKG_BUILD_DIR)/
|
$(CP) src/* $(PKG_BUILD_DIR)/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
MAKEFLAGS_KMOD = -C "$(LINUX_DIR)" \
|
||||||
# Compile the kernel part
|
|
||||||
$(MAKE) -C "$(LINUX_DIR)" \
|
|
||||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||||
ARCH="$(LINUX_KARCH)" \
|
ARCH="$(LINUX_KARCH)" \
|
||||||
PATH="$(TARGET_PATH)" \
|
PATH="$(TARGET_PATH)" \
|
||||||
SUBDIRS="$(PKG_BUILD_DIR)/kmod" \
|
SUBDIRS="$(PKG_BUILD_DIR)/kmod"
|
||||||
|
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
# Compile the kernel part
|
||||||
|
$(MAKE) $(MAKEFLAGS_KMOD) \
|
||||||
|
modules
|
||||||
|
$(MAKE) $(MAKEFLAGS_KMOD) MOD_NAME="_mimo" \
|
||||||
modules
|
modules
|
||||||
|
|
||||||
# Compile wlc
|
# Compile wlc
|
||||||
|
@ -70,11 +83,19 @@ define Build/Compile
|
||||||
all
|
all
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/kmod-brcm-wl/install
|
define wl_template
|
||||||
install -d -m0755 $(1)/etc/modules.d
|
install -d -m0755 $(1)/etc/modules.d
|
||||||
echo "wl" > $(1)/etc/modules.d/20-wl
|
echo "wl$(2)" > $(1)/etc/modules.d/20-wl$(2)
|
||||||
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
|
||||||
install -m0644 $(PKG_BUILD_DIR)/kmod/wl.o $(1)/lib/modules/$(LINUX_VERSION)/
|
install -m0644 $(PKG_BUILD_DIR)/kmod/wl$(2).o $(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/kmod-brcm-wl/install
|
||||||
|
$(call wl_template,$(1))
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/kmod-brcm-wl-mimo/install
|
||||||
|
$(call wl_template,$(1),_mimo)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/wlc/install
|
define Package/wlc/install
|
||||||
|
@ -93,6 +114,7 @@ define Package/nas/install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,kmod-brcm-wl))
|
$(eval $(call BuildPackage,kmod-brcm-wl))
|
||||||
|
$(eval $(call BuildPackage,kmod-brcm-wl-mimo))
|
||||||
$(eval $(call BuildPackage,wlc))
|
$(eval $(call BuildPackage,wlc))
|
||||||
$(eval $(call BuildPackage,wl))
|
$(eval $(call BuildPackage,wl))
|
||||||
$(eval $(call BuildPackage,nas))
|
$(eval $(call BuildPackage,nas))
|
||||||
|
|
|
@ -13,20 +13,20 @@
|
||||||
|
|
||||||
EXTRA_CFLAGS += -I$(TOPDIR)/arch/mips/bcm947xx/include -DBCMDRIVER
|
EXTRA_CFLAGS += -I$(TOPDIR)/arch/mips/bcm947xx/include -DBCMDRIVER
|
||||||
|
|
||||||
O_TARGET := wl_link.o
|
O_TARGET := wl_link$(MOD_NAME).o
|
||||||
|
|
||||||
obj-y := wl_mod.o
|
obj-y := wl_mod$(MOD_NAME).o
|
||||||
obj-y += bcmutils.o hnddma.o linux_osl.o
|
obj-y += bcmutils.o hnddma.o linux_osl.o
|
||||||
|
|
||||||
obj-m := $(O_TARGET)
|
obj-m := $(O_TARGET)
|
||||||
|
|
||||||
wl_mod.o: wl_apsta.o
|
wl_mod$(MOD_NAME).o: wl_apsta$(MOD_NAME).o
|
||||||
sed -e 's,eth%d,wl%d\x00,g' < $< > $@
|
sed -e 's,eth%d,wl%d\x00,g' < $< > $@
|
||||||
|
|
||||||
wl.o: wl_link.o
|
wl$(MOD_NAME).o: wl_link$(MOD_NAME).o
|
||||||
$(OBJDUMP) -d $< | perl patchtable.pl > patchtable.bin
|
$(OBJDUMP) -d $< | perl patchtable.pl > patchtable.bin
|
||||||
cat wl_link.o patchtable.bin > $@
|
cat wl_link$(MOD_NAME).o patchtable.bin > $@
|
||||||
|
|
||||||
modules: wl.o
|
modules: wl$(MOD_NAME).o
|
||||||
|
|
||||||
include $(TOPDIR)/Rules.make
|
include $(TOPDIR)/Rules.make
|
||||||
|
|
Loading…
Reference in a new issue