summaryrefslogtreecommitdiffstats
path: root/package/wlcompat/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-11-10 19:00:53 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-11-10 19:00:53 +0000
commited261aac7dd5c71351f720ab16a12b5bd8c1073b (patch)
treedbe4bee46c2ad4388d4b86fc720c94a461edb4ff /package/wlcompat/Makefile
parent46d61531218d6313175cdbaead9df078e1cf7cba (diff)
move wlcompat to the broadcom-wl package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9528 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wlcompat/Makefile')
-rw-r--r--package/wlcompat/Makefile72
1 files changed, 0 insertions, 72 deletions
diff --git a/package/wlcompat/Makefile b/package/wlcompat/Makefile
deleted file mode 100644
index 308a696f0..000000000
--- a/package/wlcompat/Makefile
+++ /dev/null
@@ -1,72 +0,0 @@
-#
-# 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))