aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostap-driver
Commit message (Expand)AuthorAgeFilesLines
* fixes for kernel 2.6.31Hauke Mehrtens2009-09-261-1/+1
* get rid of linux 2.6.29Felix Fietkau2009-07-171-1/+1
* Add diversity optionVasilis Tsiligiannis2009-06-011-2/+6
* Always escape essid Signed-off-by: Vasilis Tsiligiannis <b_tsiligiannis@silve...Jo-Philipp Wich2009-05-301-1/+1
* Add bssid, frag and rts options and fix mac access control Signed-off-by: Vas...Jo-Philipp Wich2009-05-301-2/+16
* Major enhancement to hostap.sh script * use common openwrt option naming (e.g...Jo-Philipp Wich2009-05-301-77/+154
* move the hostap firmware kernel config options to KCONFIG for the hostap pack...Felix Fietkau2009-05-241-1/+1
* /net/ieee80211/ was removed in new kernel versions. This adds lib80211 for ne...Hauke Mehrtens2009-05-111-1/+1
* Fix installation of hostap pci and plx driver This fixes an issue where insta...Jo-Philipp Wich2009-05-071-6/+1
* hostap-driver: fix displaying of kmod-hostap-{pci,plx,cs} in menuconfig (#4218)Jo-Philipp Wich2009-04-291-0/+1
* get rid of $Id$ - it has never helped us and it has broken too many patches ;)Felix Fietkau2009-04-171-1/+0
* push a couple of fixes upstream from AcinonyxTravis Kemen2008-02-151-5/+8
* add txpower patches and add uci configuration file From: Vasilis T. (aka Acin...Travis Kemen2007-11-283-1/+297
* fix kmod-hostap build on 2.4, add kmod-hostap-cs (closes: #1957)Nicolas Thill2007-09-261-4/+47
* move crypto support to a seperate crypto.mk file, split modules into multiple...Nicolas Thill2007-09-231-1/+1
* add missing dependencies on PCI/PCMCIA/USB supportNicolas Thill2007-09-161-2/+2
* move package description to a separate definition, remove it when DESCRIPTION...Nicolas Thill2007-09-071-20/+25
* rename hostap package to hostap-driverNicolas Thill2007-09-031-0/+133
tion. # HOST_TAR:=$(TAR) TAR_CMD=$(HOST_TAR) -C $(1)/.. $(TAR_OPTIONS) UNZIP_CMD=unzip -q -d $(1)/.. $(DL_DIR)/$(PKG_SOURCE) ifeq ($(PKG_SOURCE),) PKG_UNPACK ?= true else ifeq ($(strip $(UNPACK_CMD)),) ifeq ($(strip $(PKG_CAT)),) # try to autodetect file type EXT:=$(call ext,$(PKG_SOURCE)) EXT1:=$(EXT) ifeq ($(filter gz tgz,$(EXT)),$(EXT)) EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=)) DECOMPRESS_CMD:=gzip -dc $(DL_DIR)/$(PKG_SOURCE) | endif ifeq ($(filter bzip2 bz2 bz tbz2 tbz,$(EXT)),$(EXT)) EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=)) DECOMPRESS_CMD:=bzcat $(DL_DIR)/$(PKG_SOURCE) | endif ifeq ($(filter xz txz,$(EXT)),$(EXT)) EXT:=$(call ext,$(PKG_SOURCE:.$(EXT)=)) DECOMPRESS_CMD:=xzcat $(DL_DIR)/$(PKG_SOURCE) | endif ifeq ($(filter tgz tbz tbz2 txz,$(EXT1)),$(EXT1)) EXT:=tar endif DECOMPRESS_CMD ?= cat $(DL_DIR)/$(PKG_SOURCE) | ifeq ($(EXT),tar) UNPACK_CMD=$(DECOMPRESS_CMD) $(TAR_CMD) endif ifeq ($(EXT),cpio) UNPACK_CMD=$(DECOMPRESS_CMD) (cd $(1)/..; cpio -i -d) endif ifeq ($(EXT),zip) UNPACK_CMD=$(UNZIP_CMD) endif endif # compatibility code for packages that set PKG_CAT ifeq ($(strip $(UNPACK_CMD)),) # use existing PKG_CAT UNPACK_CMD=$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | $(TAR_CMD) ifeq ($(PKG_CAT),unzip) UNPACK_CMD=$(UNZIP_CMD) endif # replace zcat with $(ZCAT), because some system don't support it properly ifeq ($(PKG_CAT),zcat) UNPACK_CMD=gzip -dc $(DL_DIR)/$(PKG_SOURCE) | $(TAR_CMD) endif endif ifneq ($(strip $(CRLF_WORKAROUND)),) CRLF_CMD := && find $(PKG_BUILD_DIR) -type f -print0 | xargs -0 perl -pi -e 's!\r$$$$!!g' else CRLF_CMD := endif endif ifdef PKG_BUILD_DIR PKG_UNPACK ?= $(SH_FUNC) $(call UNPACK_CMD,$(PKG_BUILD_DIR)) $(call CRLF_CMD,$(PKG_BUILD_DIR)) endif ifdef HOST_BUILD_DIR HOST_UNPACK ?= $(SH_FUNC) $(call UNPACK_CMD,$(HOST_BUILD_DIR)) $(call CRLF_CMD,$(HOST_BUILD_DIR)) endif endif # PKG_SOURCE