summaryrefslogtreecommitdiffstats
path: root/package/wlcompat/Makefile
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-18 20:44:34 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-18 20:44:34 +0000
commitb055a29bca742903b55bd76bef074934575c8978 (patch)
treeec0dec3508e494eed249508f90c4e6230487a9df /package/wlcompat/Makefile
parenta9ffe1dd47c3c19501ae928a06f956e2259363d3 (diff)
move wlcompat from target/linux/package/ to package/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4002 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wlcompat/Makefile')
-rw-r--r--package/wlcompat/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/package/wlcompat/Makefile b/package/wlcompat/Makefile
new file mode 100644
index 000000000..4c3632d98
--- /dev/null
+++ b/package/wlcompat/Makefile
@@ -0,0 +1,54 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=kmod-wlcompat
+PKG_RELEASE:=3
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
+
+include $(TOPDIR)/package/rules.mk
+
+WLCOMPAT_FLAGS:=$(TARGET_CFLAGS) -D__KERNEL__ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 \
+ -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 \
+ -Wa,-mips32 -Wa,--trap -DMODULE -mlong-calls -fno-common -I. -I linux-2.4 -funsigned-char -nostdinc \
+ -iwithprefix include -I$(LINUX_DIR)/include -I$(LINUX_DIR)/include/asm/gcc -I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(STAGING_DIR)/usr/include -I./src/include
+
+define Package/kmod-wlcompat
+SECTION:=drivers
+CATEGORY:=Drivers
+DEPENDS:=
+TITLE:=Wrapper providing Wireless Extensions for Broadcom wl module
+DESCRIPTION:= \\\
+A wrapper module, that provides Wireless Extension support for the \\\
+proprietary Broadcom wl module.
+VERSION:=$(LINUX_VERSION)+$(BOARD)-$(PKG_RELEASE)
+endef
+
+define Package/kmod-wlcompat-debug
+$(call Package/kmod-wlcompat)
+TITLE:=Wrapper providing Wireless Extensions for Broadcom wl module (debug)
+DESCRIPTION:= \\\
+A wrapper module, that provides Wireless Extension support for the \\\
+proprietary Broadcom wl module.
+endef
+
+define Build/Compile
+ $(TARGET_CC) -c -o $(PKG_BUILD_DIR)/wlcompat.o $(WLCOMPAT_FLAGS) wlcompat.c
+ $(TARGET_CC) -c -o $(PKG_BUILD_DIR)/wlcompat-debug.o $(WLCOMPAT_FLAGS) -DDEBUG wlcompat.c
+endef
+
+define Package/kmod-wlcompat/install
+ install -d -m0755 $(1)/etc/modules.d
+ echo "wlcompat" > $(1)/etc/modules.d/30-wlcompat
+ install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
+ $(CP) $(PKG_BUILD_DIR)/wlcompat.o $(1)/lib/modules/$(LINUX_VERSION)/
+endef
+
+define Package/kmod-wlcompat-debug/install
+ install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION)
+ $(CP) $(PKG_BUILD_DIR)/wlcompat-debug.o $(1)/lib/modules/$(LINUX_VERSION)/
+endef
+
+$(eval $(call BuildPackage,kmod-wlcompat))
+$(eval $(call BuildPackage,kmod-wlcompat-debug))