diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-19 00:18:32 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-19 00:18:32 +0000 |
commit | 86aa3709beff6608931ab52373bcce09bfc2905a (patch) | |
tree | 2bfffc02f92df81fe830c6d7157d5296a603fcf3 /package/wlcompat | |
parent | cee33e241a7974dc808b91a325d6777fc18280c0 (diff) |
move source file to src/ and let the kernel tree build the modules.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4004 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wlcompat')
-rw-r--r-- | package/wlcompat/Makefile | 28 | ||||
-rw-r--r-- | package/wlcompat/src/Makefile | 19 | ||||
-rw-r--r-- | package/wlcompat/src/wlcompat.c (renamed from package/wlcompat/wlcompat.c) | 0 |
3 files changed, 40 insertions, 7 deletions
diff --git a/package/wlcompat/Makefile b/package/wlcompat/Makefile index 4c3632d98..c6dc6d894 100644 --- a/package/wlcompat/Makefile +++ b/package/wlcompat/Makefile @@ -1,6 +1,7 @@ # $Id$ include $(TOPDIR)/rules.mk +include $(TOPDIR)/package/kernel.mk PKG_NAME:=kmod-wlcompat PKG_RELEASE:=3 @@ -9,11 +10,6 @@ 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 @@ -33,9 +29,27 @@ A wrapper module, that provides Wireless Extension support for the \\\ proprietary Broadcom wl module. endef +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +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 + $(MAKE) -C "$(LINUX_DIR)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + PATH="$(TARGET_PATH)" \ + 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)" \ + PATH="$(TARGET_PATH)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + EXTRA_CFLAGS="-I$(LINUX_DIR)/arch/mips/bcm947xx/include -I$(PKG_BUILD_DIR)/include" \ + modules endef define Package/kmod-wlcompat/install diff --git a/package/wlcompat/src/Makefile b/package/wlcompat/src/Makefile new file mode 100644 index 000000000..4290d9a33 --- /dev/null +++ b/package/wlcompat/src/Makefile @@ -0,0 +1,19 @@ +# $Id$ +# +# Makefile for diag driver +# +# Copyright (C) 2005 Felix Fietkau <nbd@openwrt.org> +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version +# 2 of the License, or (at your option) any later version. +# + +obj-m := wlcompat.o + +ifeq ($(MAKING_MODULES),1) +export-objs := wlcompat.o + +-include $(TOPDIR)/Rules.make +endif diff --git a/package/wlcompat/wlcompat.c b/package/wlcompat/src/wlcompat.c index 1540a2116..1540a2116 100644 --- a/package/wlcompat/wlcompat.c +++ b/package/wlcompat/src/wlcompat.c |