mac80211 / compat-wireless fixes:

* build in KERNEL_BUILD_DIR
 * only build kernel module if it's selected


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10815 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Nicolas Thill 2008-04-13 13:35:02 +00:00
parent 7db3c4a2d3
commit c70cd8479d
1 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2007 OpenWrt.org # Copyright (C) 2007-2008 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -15,7 +15,7 @@ PKG_RELEASE:=1
PKG_VERSION:=2008-04-07 PKG_VERSION:=2008-04-07
PKG_SOURCE:=compat-wireless-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=compat-wireless-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://linuxwireless.org/download/compat-wireless-2.6/ PKG_SOURCE_URL:=http://linuxwireless.org/download/compat-wireless-2.6/
PKG_BUILD_DIR:=$(BUILD_DIR)/compat-wireless-$(PKG_VERSION) PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/compat-wireless-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
@ -177,8 +177,14 @@ define Build/Prepare
unzip -jod $(PKG_BUILD_DIR) $(DL_DIR)/$(RT71FW) unzip -jod $(PKG_BUILD_DIR) $(DL_DIR)/$(RT71FW)
endef endef
define Build/Compile ifneq ($(CONFIG_PACKAGE_kmod-mac80211),)
define Build/Compile/kmod
$(MAKE) -C "$(PKG_BUILD_DIR)" $(MAKE_OPTS) all $(MAKE) -C "$(PKG_BUILD_DIR)" $(MAKE_OPTS) all
endef
endif
define Build/Compile
$(call Build/Compile/kmod)
endef endef
define Build/InstallDev define Build/InstallDev