aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/files
Commit message (Collapse)AuthorAgeFilesLines
...
* mac80211: fix wifi detect with 11n cards that have multiple bandsFelix Fietkau2009-11-091-2/+5
| | | | SVN-Revision: 18351
* mac80211: fill some important capabilities into ht_capab in the hostapd configFelix Fietkau2009-11-041-1/+12
| | | | SVN-Revision: 18293
* mac80211: fix a warning during interface bringup when using autochannelFelix Fietkau2009-10-111-1/+1
| | | | SVN-Revision: 18034
* mac80211: fix encryption fallback for sta mode, add frequency/bssid ↵Felix Fietkau2009-10-111-4/+5
| | | | | | selection support SVN-Revision: 18025
* mac80211: fix autochannel / fixed channel selection, add commands for ↵Felix Fietkau2009-10-111-7/+14
| | | | | | unencrypted sta mode SVN-Revision: 18024
* mac80211: upgrade to latest compat-wireless, fix ad-hoc interface setupFelix Fietkau2009-10-111-3/+14
| | | | SVN-Revision: 18023
* mac80211: autodetect the default phy mode based on 11n and freq capabilitiesFelix Fietkau2009-10-021-0/+5
| | | | SVN-Revision: 17825
* mac80211: fix typo in ifname setup, suppress error messages of interface ↵Felix Fietkau2009-10-021-3/+3
| | | | | | enumeration commands SVN-Revision: 17824
* mac80211: merge Pat Erley's mac80211.sh from openwrt-devel@ with many ↵Felix Fietkau2009-10-021-99/+185
| | | | | | cleanups and other changes by me. adds support for multiple interfaces, tested with ath9k SVN-Revision: 17821
* mac80211: Declare some variables as local and remove unusedVasilis Tsiligiannis2009-06-291-2/+2
| | | | SVN-Revision: 16627
* wifi: fix hostapd + autochannelFelix Fietkau2009-03-271-0/+1
| | | | SVN-Revision: 15055
* add a workaround for devices that only start beaconing after scanning, that ↵Florian Fainelli2009-03-251-0/+1
| | | | | | is almost every driver except b43 SVN-Revision: 15041
* b43: Add support for removing unnecessary firmware files to reduce the image ↵Michael Büsch2009-03-171-0/+100
| | | | | | size. SVN-Revision: 14929
* allow mac80211 devices to be configured to do 802.11s, requires iwFlorian Fainelli2009-02-261-2/+16
| | | | SVN-Revision: 14669
* mac80211: move txpower to wifi-device section, but remain backwards compatibleAndy Boyett2009-01-311-4/+6
| | | | SVN-Revision: 14309
* mac80211: cleanup mac80211.shGabor Juhos2009-01-281-11/+11
| | | | SVN-Revision: 14246
* Silence ifconfig down errors in mac80211 (#4067)Florian Fainelli2008-10-041-1/+1
| | | | SVN-Revision: 12856
* Fix putting mac80211 interfaces in monitor and managed modesFlorian Fainelli2008-08-131-3/+8
| | | | SVN-Revision: 12293
* Add generic wpa_supplicant calls and use them for mac80211 and madwifi.Florian Fainelli2008-08-121-24/+9
| | | | SVN-Revision: 12289
* Allow setting mac80211 interface into ad-hoc mode (#3247)Florian Fainelli2008-03-271-2/+7
| | | | SVN-Revision: 10677
* mac80211 wifi script: Tell hostapd to use the nl80211 driver.Michael Büsch2008-02-171-3/+3
| | | | SVN-Revision: 10477
* add minimal uci supportEugene Konev2007-10-051-0/+195
SVN-Revision: 9145
> $(call Require,fileutils, \ Please install GNU fileutils \ )) define Require/working-gcc echo 'int main(int argc, char **argv) { return 0; }' | \ gcc -x c -o $(TMP_DIR)/a.out - endef $(eval $(call Require,working-gcc, \ Please install the GNU C Compiler (gcc). \ )) define Require/working-g++ echo 'int main(int argc, char **argv) { return 0; }' | \ g++ -x c++ -o $(TMP_DIR)/a.out - -lstdc++ && \ $(TMP_DIR)/a.out endef $(eval $(call Require,working-g++, \ Please install the GNU C++ Compiler (g++). \ )) ifneq ($(HOST_STATIC_LINKING),) define Require/working-gcc-static echo 'int main(int argc, char **argv) { return 0; }' | \ gcc -x c $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out - endef $(eval $(call Require,working-gcc-static, \ Please install the static libc development package (glibc-static on CentOS/Fedora/RHEL). \ )) define Require/working-g++-static echo 'int main(int argc, char **argv) { return 0; }' | \ g++ -x c++ $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out - -lstdc++ && \ $(TMP_DIR)/a.out endef $(eval $(call Require,working-g++-static, \ Please install the static libstdc++ development package (libstdc++-static on CentOS/Fedora/RHEL). \ )) endif define Require/ncurses echo 'int main(int argc, char **argv) { initscr(); return 0; }' | \ gcc -include ncurses.h -x c -o $(TMP_DIR)/a.out - -lncurses endef $(eval $(call Require,ncurses, \ Please install ncurses. (Missing libncurses.so or ncurses.h) \ )) define Require/zlib echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \ gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - -lz endef $(eval $(call Require,zlib, \ Please install zlib. (Missing libz.so or zlib.h) \ )) ifneq ($(HOST_STATIC_LINKING),) define Require/zlib-static echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' | \ gcc -include zlib.h -x c $(HOST_STATIC_LINKING) -o $(TMP_DIR)/a.out - -lz endef $(eval $(call Require,zlib-static, \ Please install a static zlib. (zlib-static on CentOS/Fedora/RHEL). \ )) endif $(eval $(call RequireCommand,gawk, \ Please install GNU awk. \ )) $(eval $(call RequireCommand,unzip, \ Please install unzip. \ )) $(eval $(call RequireCommand,bzip2, \ Please install bzip2. \ )) $(eval $(call RequireCommand,perl, \ Please install perl. \ )) $(eval $(call RequireCommand,$(PYTHON), \ Please install python. \ )) $(eval $(call RequireCommand,wget, \ Please install wget. \ )) define Require/git git --version | awk '($$$$1 == "git") && ($$$$2 == "version") && ($$$$3 >= "1.6.5") { print "ok" }' | grep ok > /dev/null endef $(eval $(call Require,git, \ Please install git (git-core) v1.6.5 or later. \ )) define Require/gnutar $(TAR) --version 2>&1 | grep GNU > /dev/null endef $(eval $(call Require,gnutar, \ Please install GNU tar. \ )) $(eval $(call RequireCommand,svn, \ Please install the subversion client. \ )) $(eval $(call RequireCommand,openssl, \ Please install openssl. \ )) define Require/gnu-find $(FIND) --version 2>/dev/null endef $(eval $(call Require,gnu-find, \ Please install GNU find \ )) define Require/getopt-extended getopt --long - - >/dev/null endef $(eval $(call Require,getopt-extended, \ Please install an extended getopt version that supports --long \ ))