summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* build: fix typo in mips16 changesFelix Fietkau2013-08-141-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37776
* disable mips16 for a few packages that don't compile with itFelix Fietkau2013-08-143-0/+3
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37773
* polarssl: disable mips16Felix Fietkau2013-08-141-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37772
* openssl: to disable mips16, use the new PKG_USE_MIPS16 flag instead of ↵Felix Fietkau2013-08-141-1/+2
| | | | | | | | messing with cflags directly Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37771
* build: decouple the mips16 support flag from the toolchainFelix Fietkau2013-08-143-10/+9
| | | | | | | | | Add the flags from package.mk instead, and leave libc and gcc unaffected. Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37770
* ocf: switch MODULE_LICENSE from BSD to "Dual BSD/GPL" to make the kernel ↵Felix Fietkau2013-08-148-8/+8
| | | | | | | | recognize modules as GPL-compatible Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37769
* ath9k: merge a few more cleanups/fixesFelix Fietkau2013-08-132-46/+204
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37767
* ath9k: reorganize patchesFelix Fietkau2013-08-1312-140/+108
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37766
* ar71xx: ethernet: reduce tx dma ring size further to improve cache footprintFelix Fietkau2013-08-131-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37765
* mac80211: merge upstream patch to suppress unnecessary ad-hoc mode scan with ↵Felix Fietkau2013-08-131-0/+20
| | | | | | | | fixed-freq, fixed-bssid Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37764
* kernel: add patch to inline mips dma mapping functions - reduces code size ↵Felix Fietkau2013-08-123-1/+834
| | | | | | | | and improves performance Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37763
* ar71xx: ethernet: reduce tx and rx DMA ring size to improve cache footprintFelix Fietkau2013-08-121-2/+2
| | | | | | | | 256 entries is a bit excessive, even for gigabit speeds Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37762
* ar71xx: ethernet: cache skb->len in the tx function to avoid accessing it ↵Felix Fietkau2013-08-122-5/+10
| | | | | | | | | | again in completion Improves ethernet performance, especially during bridging Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37761
* rtl8367: add support for configuring the VLAN FIDFelix Fietkau2013-08-121-0/+7
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37760
* ar71xx: fix typoFelix Fietkau2013-08-121-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37759
* ar71xx: ethernet: skip calls to netdev_completed_queue and netif_wake_queue ↵Felix Fietkau2013-08-121-0/+3
| | | | | | | | if no tx cleanup was done Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37758
* ar71xx: ethernet: do not update the unused dev->last_rx fieldFelix Fietkau2013-08-121-1/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37757
* ar71xx: add missing return statement in ethernet mtu change opFelix Fietkau2013-08-121-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37756
* kernel: remove imx-sdma-fw because of license issuesLuka Perkov2013-08-122-57/+1
| | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 37755
* imx6: use kmod-imx-sdma-fw-imx6 by defaultLuka Perkov2013-08-111-1/+1
| | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 37754
* kernel: add imx-sdma-fw packageLuka Perkov2013-08-111-0/+56
| | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 37753
* imx6: fix sdmaLuka Perkov2013-08-113-1/+53
| | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 37752
* musl: mark as broken, many packages do not compile with itFelix Fietkau2013-08-101-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37750
* x86: Fix CONFIG_X86_GRUB_SERIAL=""Felix Fietkau2013-08-101-2/+4
| | | | | | | | | | | | | | | | | | | | With .config:CONFIG_X86_GRUB_SERIAL="" which (AFAICT) is the way to tell GRUB not to use a serial console, in target/linux/x86/image/Makefile:ifneq ($(CONFIG_X86_GRUB_SERIAL),) $(CONFIG_X86_GRUB_SERIAL) expands to `""' (a literal double double-quote), making the condition unconditionally false. This patch fixes the situation by passing CONFIG_X86_GRUB_SERIAL through qstrip before testing. Signed-off-by: Tamas TEVESZ <ice@extreme.hu> SVN-Revision: 37749
* ar71xx: allow mtu > 1500 based on the configured tx/rx mtu register valueFelix Fietkau2013-08-101-1/+10
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37748
* ath9k: fix an rx descriptor processing race conditionFelix Fietkau2013-08-101-0/+82
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37746
* mcs814x: enable POSIX file lockingFlorian Fainelli2013-08-091-1/+0
| | | | | | | | | | | | | | | | | opkg (and possible other tools) are currently broken as it requires file locking support enabled in the kernel. Without this results in a message like: root@OpenWrt:/etc/config# opkg update Collected errors: * opkg_conf_load: Could not lock /var/lock/opkg.lock: Permission denied. With this patch opkg is fully functional on this platform. Signed-off-by: Michael Heimpold <mhei@heimpold.de> Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 37745
* hostapd: fix typo in version numberFelix Fietkau2013-08-081-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37742
* hostapd: fix ubus reconnect handlingFelix Fietkau2013-08-081-1/+18
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37741
* ubus: update to latest version, fixes a bug in reconnect after ubusd diesFelix Fietkau2013-08-081-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37740
* hostapd: add a build variant for wpa_supplicant with p2p (aka Wi-Fi Direct) ↵Felix Fietkau2013-08-082-2/+428
| | | | | | | | support Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37739
* hostapd: update to latest version (20130707)Felix Fietkau2013-08-0824-284/+83
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37738
* include: cmake: pass toolchain directory to default root find path as wellJo-Philipp Wich2013-08-071-1/+1
| | | | SVN-Revision: 37737
* hostapd: Settings for DAE/CoA serverFelix Fietkau2013-08-061-0/+7
| | | | | | | | | | | | | | | | | | | | | | hostapd supports "Dynamic Authorization Extensions", making it possible to forcibly disconnect a user by sending it a RADIUS "Disconnect-Request" packet. I've added three new variables to enable setting of the "radius_das_client" and "radius_das_port" variables in the hostapd configuration, which enable these extensions. * dae_client - IP of the client that can send disconnect requests * dae_secret - shared secret for DAE packets These are combined into the "radius_das_client" option in hostapd.conf To enable the server, both dae_client and dae_secret must be set. * dae_port - optional, default value is 3799 as specified in RFC 5176 Signed-off-by: Martijn van de Streek <martijn@vandestreek.net> SVN-Revision: 37734
* hostapd: Fix WDS/WEP usageFelix Fietkau2013-08-061-0/+156
| | | | | | | | | WEP in WDS is currently broken in hostapd. Add a patch to fix the issue. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> SVN-Revision: 37733
* mac80211: Handle concurrent AP/STA beaconing properlyFelix Fietkau2013-08-061-1/+6
| | | | | | | | | Use the "start_disabled" option in hostapd that was added in the earlier patch. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> SVN-Revision: 37732
* hostapd: Refresh patchesFelix Fietkau2013-08-067-18/+18
| | | | | | Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> SVN-Revision: 37731
* hostapd: Add an option to disable beaconingFelix Fietkau2013-08-061-0/+45
| | | | | | | | | | | | Add a patch for hostapd that introduces a config option "start_disabled" which can be used to bring up an AP interface with beaconing disabled. This is useful in a Repeater-AP setup where the Repeater AP has to start beaconing only after the WDS link has been established. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> SVN-Revision: 37730
* lantiq: fix TD-W8970 image generation to work with the new toolJohn Crispin2013-08-061-2/+8
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37727
* firmware-utils: add a tool TP-Link v2 image generationJohn Crispin2013-08-062-0/+945
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 37726
* firmware-utils: remove v2 supportJohn Crispin2013-08-061-85/+3
| | | | | | | | we will use gabors patch instead Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37725
* firmware-utils: fix segfault introduced by v2 changesJohn Crispin2013-08-061-2/+2
| | | | | | Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com> SVN-Revision: 37724
* ar71xx: remove duplicate dir505 entry from board detection codeJohn Crispin2013-08-061-3/+0
| | | | | | | | https://dev.openwrt.org/ticket/14006 Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37723
* lantiq: add support for tplink images to .../image/MakefileJohn Crispin2013-08-061-2/+19
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37722
* lantiq: make the split patch recognize the tplink headerJohn Crispin2013-08-061-16/+43
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37721
* lantiq: fix TDW8970.dts commandline and partition nameJohn Crispin2013-08-061-2/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37720
* lantiq: add tplink header id to sysupgrade and fix a commentJohn Crispin2013-08-061-1/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37719
* firmware-utils: add support for TDW8970 to mktplinkfwJohn Crispin2013-08-061-0/+13
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37718
* firmware-utils: add v2 header support to firmware-utilsJohn Crispin2013-08-061-3/+72
| | | | | | | | only image build works. inspect and md5 checksum support are not implemented yet Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37717
* ath9k: fold the aggregation rework into 300-pending_work.patch (tracked as ↵Felix Fietkau2013-08-0619-1337/+989
| | | | | | | | upstream submission) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37716