mirror of https://github.com/hak5/openwrt-owl.git
parent
5ddbc45eda
commit
1e5f02e9d0
|
@ -27,8 +27,16 @@ define Package/kmod-brcm-wl
|
|||
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(PKG_RELEASE)
|
||||
endef
|
||||
|
||||
define Package/wlc
|
||||
define Package/kmod-brcm-wl-mimo
|
||||
$(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
|
||||
TITLE:=Setup utility
|
||||
DESCRIPTION:=Utility for initializing the Broadcom wl driver
|
||||
|
@ -53,13 +61,18 @@ define Build/Prepare
|
|||
$(CP) src/* $(PKG_BUILD_DIR)/
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
# Compile the kernel part
|
||||
$(MAKE) -C "$(LINUX_DIR)" \
|
||||
MAKEFLAGS_KMOD = -C "$(LINUX_DIR)" \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
ARCH="$(LINUX_KARCH)" \
|
||||
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
|
||||
|
||||
# Compile wlc
|
||||
|
@ -70,11 +83,19 @@ define Build/Compile
|
|||
all
|
||||
endef
|
||||
|
||||
define Package/kmod-brcm-wl/install
|
||||
define wl_template
|
||||
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 -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
|
||||
|
||||
define Package/wlc/install
|
||||
|
@ -93,6 +114,7 @@ define Package/nas/install
|
|||
endef
|
||||
|
||||
$(eval $(call BuildPackage,kmod-brcm-wl))
|
||||
$(eval $(call BuildPackage,kmod-brcm-wl-mimo))
|
||||
$(eval $(call BuildPackage,wlc))
|
||||
$(eval $(call BuildPackage,wl))
|
||||
$(eval $(call BuildPackage,nas))
|
||||
|
|
|
@ -13,20 +13,20 @@
|
|||
|
||||
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-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' < $< > $@
|
||||
|
||||
wl.o: wl_link.o
|
||||
wl$(MOD_NAME).o: wl_link$(MOD_NAME).o
|
||||
$(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
|
||||
|
|
Loading…
Reference in New Issue