- Mar 05, 2014
-
-
Zoltan Herpai authored
Signed-off-by:
Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39781
-
Zoltan Herpai authored
Signed-off-by:
Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39780
-
Zoltan Herpai authored
Signed-off-by:
Zoltan HERPAI <wigyori@uid0.hu> Signed-off-by:
Zalan Blenessy <zalan.blenessy@gmail.com> SVN-Revision: 39779
-
Felix Fietkau authored
The uImage target will always fail on a clean build due to dependency issues. Building the uImage isn't necessary anyway as its re-built with correct entry points in image/Makefile so remove it. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> SVN-Revision: 39778
-
Steven Barth authored
Signed-off-by:
Steven Barth <steven@midlink.org> SVN-Revision: 39777
-
Steven Barth authored
* Reduce RA/DHCPv6 spam filter to 30s by default and make it configurable * Don't set nd_ra_{reachable,retransmit] to 0 when received in RAs SVN-Revision: 39775
-
- Feb 28, 2014
-
-
Florian Fainelli authored
Update our copies of the brcm2708 patches to the latest rpi-3.10-y rebased against linux-3.10.y stable (3.10.32). This should hopefully make it easier for us in the future to leverage the raspberry/rpi-* branches. Signed-off-by:
Florian Fainelli <florian@openwrt.org> SVN-Revision: 39770
-
Florian Fainelli authored
Signed-off-by:
Florian Fainelli <florian@openwrt.org> SVN-Revision: 39769
-
Florian Fainelli authored
Define KERNELNAME to Image to get the build system to copy this image over $(KDIR) automatically for us. Signed-off-by:
Florian Fainelli <florian@openwrt.org> SVN-Revision: 39768
-
Felix Fietkau authored
ath9k: improve noise immunity behavior for older chipsets (ar92xx and earlier), should improve stability Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39767
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39766
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39765
-
Felix Fietkau authored
Signed-off-by: Embedded Wireless GmbH <info at embeddedwireless.de> SVN-Revision: 39764
-
Felix Fietkau authored
Signed-off-by: Embedded Wireless GmbH <info at embeddedwireless.de> SVN-Revision: 39763
-
- Feb 27, 2014
-
-
Felix Fietkau authored
We already clean up tx descriptors in the napi eth_poll() function so it would likely be rare to run out of available descriptors in eth_xmit. Thus we can clean them up only when needed and return busy only when we still don't have enough. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> SVN-Revision: 39762
-
Felix Fietkau authored
The combination of r35942 and r35952 causes an issue where eth_schedule_poll() can be called from a different CPU between the call to napi_complete() and the setting of cur_index which can break the rx ring accounting and cause ethernet latency and/or ethernet stalls. The issue can be easilly created by adding a couple of artificial delays such as: @@ -715,6 +715,7 @@ static int eth_poll(struct napi_struct *napi, int budget) if (!received) { napi_complete(napi); +udelay(1000); enable_irq(IRQ_CNS3XXX_SW_R0RXC); } @@ -727,6 +728,7 @@ static int eth_poll(struct napi_struct *napi, int budget) rx_ring->cur_index = i; wmb(); +udelay(1000); enable_rx_dma(sw); return received; This patch moves the setting of cur_index back up where it needs to be and addresses the original corner case that r35942 was trying to catch in an improved fashion by checking to see if the rx descriptor ring has become full before interrupts were re-enabled so that a poll can be scheduled again and avoid an rx stall caused by rx interrupts ceasing to fire again. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> SVN-Revision: 39761
-
Luka Perkov authored
The IMX6 SoC uses an ARM Cortext-A9 which has both NEON and VFPv3 hardware blocks. This will tune gcc to use neon instead of vfpv3 which will outperform VFPv3. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> SVN-Revision: 39760
-
Luka Perkov authored
The OpenWrt build system uses MACHINE_FEATURES of fpu to set the HAS_FPU which in turn sets the default of CONFIG_SOFT_FLOAT as well as uClibc configuration. As the IMX6 SoC has both vfpv3 and NEON hardware support we want to add fpu to the feature list. This will default the IMX6 target to use -mfloat-abi=hard which will the be most efficient use of floating point. When switching to hard float, we also need to enable VFP support in the kernel. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> SVN-Revision: 39759
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39758
-
Steven Barth authored
SVN-Revision: 39757
-
Florian Fainelli authored
We were copying the actual vmlinux-initramfs.elf kernel which cannot be launched by QEMU or a real bootloader, use zImage-initramfs instead. Signed-off-by:
Florian Fainelli <florian@openwrt.org> SVN-Revision: 39756
-
- Feb 26, 2014
-
-
Steven Barth authored
netifd didn't check the netlink return values and kept assuming routes are in place even if they weren't SVN-Revision: 39755
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39754
-
- Feb 25, 2014
-
-
Hauke Mehrtens authored
BCM47XX_BOARD_LINKSYS_WRT54G was renamed in r39718 Signed-off-by:
Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 39753
-
Gabor Juhos authored
The ar71xx platform always uses the eth0 interface to provide access to the device in failsafe mode. Due to this, failsafe access is broken on devices where the LAN ports are connected to the 'eth1' interface. Update the relevant script to correctly set the ifname variable for these devices. Signed-off-by:
Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 39752
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39751
-
- Feb 24, 2014
-
-
Felix Fietkau authored
toolchain/musl: add version 0.9.15, remove older versions (still broken, but closer to being functional than before) Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39750
-
Felix Fietkau authored
Symbols need to be hidden, even for the static variant Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39749
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39748
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39747
-
Jonas Gorski authored
Add support for 3.13 as a development kernel. Mostly untested, only net booted. If flashed may brick your router or kill your cat. Signed-off-by:
Jonas Gorski <jogo@openwrt.org> SVN-Revision: 39746
-
Jonas Gorski authored
Signed-off-by:
Jonas Gorski <jogo@openwrt.org> SVN-Revision: 39745
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39744
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39743
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39742
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39741
-
Steven Barth authored
SVN-Revision: 39740
-
Steven Barth authored
Similarly to the previously broken address pools, DNS-servers and some MSRs could be advertised incorrectly as well. This is now fixed. SVN-Revision: 39739
-
- Feb 23, 2014
-
-
Jo-Philipp Wich authored
Signed-off-by:
Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 39738
-
Gabor Juhos authored
Signed-off-by:
Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 39737
-