openwrt.git
9 years agouClibc: fix syscall() for syscalls with 6 arguments on PowerPC
blogic [Thu, 12 Mar 2015 10:07:01 +0000 (10:07 +0000)]
uClibc: fix syscall() for syscalls with 6 arguments on PowerPC

Patch from the uClibc master.

Fixes the package fastd on PowerPC.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44694 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: Ext LNA patch for TUBE2H and HORNET-UB targets
blogic [Thu, 12 Mar 2015 10:06:53 +0000 (10:06 +0000)]
ar71xx: Ext LNA patch for TUBE2H and HORNET-UB targets

Signed-off-by: Christophe Prévotaux <c.prevotaux@rural-networks.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44693 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: Hornet UB GPIO WPS/Reset
blogic [Thu, 12 Mar 2015 10:06:42 +0000 (10:06 +0000)]
ar71xx: Hornet UB GPIO WPS/Reset

This problem has existed at least since Attitude Adjustment and
is also present in trunk. Basically on the Hornet-UB board the
functionality of RESET and WPS have "switched places".

There are two tickets about the issue at dev.openwrt.org,
The solution suggested on them both is incomplete though
and introduces the following proglem:

Patching as suggested on #14136/#15282 will result in a situation
where simply pressing the RESET button on the bottom will cause
FACTORY RESET to be run. This is due to GPIO high/low state being
incorrect as a result of the above change and virtually the RESET
button is in the pressed-down state the entire time. When it is
then physically pressed, that causes the opposite, release, to be
triggered and since to the board it seemed that the button was
pressed long before it was released, the FACTORY RESET results.

The attached patch works as expected. I have verified both the
incorrect functionality as well as after fixing the issue as
described in the patch and flashing the resulting firmware to a
Hornet-UB board.

Signed-off-by: Janne Cederberg <janne.cederberg@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44692 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoralink: resize the flash partition for FireWRT
blogic [Thu, 12 Mar 2015 10:06:31 +0000 (10:06 +0000)]
ralink: resize the flash partition for FireWRT

Signed-off-by: wengbj <fl.service@t-firefly.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44691 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoralink: MT7621 add i2c controller driver
blogic [Thu, 12 Mar 2015 10:06:17 +0000 (10:06 +0000)]
ralink: MT7621 add i2c controller driver

ralink i2c driver is not working on MT7621 platform. Porting a new drivers from MTK's source code.

Signed-off-by: daixj <fl.service@t-firefly.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44690 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolldpd: add support for 'readonly_mode'
blogic [Thu, 12 Mar 2015 10:06:08 +0000 (10:06 +0000)]
lldpd: add support for 'readonly_mode'

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44689 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomodules: set dwc2 gadget dependency for at91
blogic [Thu, 12 Mar 2015 10:06:01 +0000 (10:06 +0000)]
modules: set dwc2 gadget dependency for at91

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44688 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoacx-mac80211: fails to build on cobalt
blogic [Thu, 12 Mar 2015 10:05:54 +0000 (10:05 +0000)]
acx-mac80211: fails to build on cobalt

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44687 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agocobalt: framebuffer device has moved
blogic [Thu, 12 Mar 2015 10:05:48 +0000 (10:05 +0000)]
cobalt: framebuffer device has moved

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44686 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agodisable silent-rules by default
mirko [Thu, 12 Mar 2015 00:39:50 +0000 (00:39 +0000)]
disable silent-rules by default

OpenWrt hides verbose output by default,
regardless of automake silent-rules being en-/disabled.

If we enable verbose output for package builds (V=s)
however, we'd like to see as most as possible.

Signed-off-by: Mirko Vogt <mirko@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44685 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoDo not use $(V) - force AM_V=1
mirko [Thu, 12 Mar 2015 00:39:48 +0000 (00:39 +0000)]
Do not use $(V) - force AM_V=1

Projects using silent-rules might otherwise fail to compile.

This is due to the following resulting Makefile code:

AM_V_P = $(am__v_P_$(V))
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
am__v_P_0 = false
am__v_P_1 = :

Automake directly uses $(V) for variable name expansion
which fails if $(V) is set to sth. else other than '0' or '1'.

This patch forces automake to not take $(V) into account
but to always use the default config for verbosity.

A better approach would be to actually take $(V) into account,
however not just pass it through (AM_V='$(V)') but
set AM_V to 0 if $V=0 / unset and to 1 otherwise.

This plan however is foiled due to my frustration about
automake as well as my lack of m4 skills.

automake bug report: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20077

Signed-off-by: Mirko Vogt <mirko@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44684 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomodules: make dwc2 only depend on gadget support for brcm2708
blogic [Wed, 11 Mar 2015 17:58:53 +0000 (17:58 +0000)]
modules: make dwc2 only depend on gadget support for brcm2708

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44683 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agouhttp: update to latest git HEAD
blogic [Wed, 11 Mar 2015 17:58:47 +0000 (17:58 +0000)]
uhttp: update to latest git HEAD

this add json-c 0.12, sorry forgot to push this earlier today

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44682 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: backport symbol export from r44653 to 3.14
nbd [Wed, 11 Mar 2015 17:32:29 +0000 (17:32 +0000)]
kernel: backport symbol export from r44653 to 3.14

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44681 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobcm53xx: fixup early device id 8012
rmilecki [Wed, 11 Mar 2015 17:32:02 +0000 (17:32 +0000)]
bcm53xx: fixup early device id 8012

Looks like the BCM53012 has a similar problem to the BCM53011.

Signed-off-by: Ian Kent <raven@themaw.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44680 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobcm53xx: fix typo in bcm47xx sprom driver
rmilecki [Wed, 11 Mar 2015 17:10:19 +0000 (17:10 +0000)]
bcm53xx: fix typo in bcm47xx sprom driver

Fix thinko' in the bcm47xx sprom driver.

Signed-off-by: Ian Kent <raven@themaw.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44679 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokenrel: refresh patches
blogic [Wed, 11 Mar 2015 17:08:46 +0000 (17:08 +0000)]
kenrel: refresh patches

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44678 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: make the new dwc2 support only work for vr9
blogic [Wed, 11 Mar 2015 17:08:40 +0000 (17:08 +0000)]
lantiq: make the new dwc2 support only work for vr9

danube needs to be added

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44677 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: Convert Zyxel P-2812HNU-FX and TP-Link TD-W8970 to support dwc2
blogic [Wed, 11 Mar 2015 17:08:32 +0000 (17:08 +0000)]
lantiq: Convert Zyxel P-2812HNU-FX and TP-Link TD-W8970 to support dwc2

Here the device tree entry for ifxhcd is listed as compatible with one
supported in dwc2 (after patching the dwc driver appropriately).

A second entry is added to support the second core of the hcd. This
entry is listed to be compatible with only dwc2. Done this way there
should be backwards support for both hcd drivers (ltq-hcd and dwc2)

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44676 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: Use platform endianness when accessing dwc2 registers
blogic [Wed, 11 Mar 2015 17:08:26 +0000 (17:08 +0000)]
lantiq: Use platform endianness when accessing dwc2 registers

This patch switches calls to readl/writel to their
dwc2_readl/dwc2_writel equivalents which preserve platform endianness.

This patch is necessary to access dwc2 registers correctly on big
endian systems such as the mips based SoCs made by Lantiq. Then dwc2
can be used to replace ifx-hcd driver for Lantiq platforms found e.g.
in OpenWrt.

The patch was autogenerated with the following commands:
$EDITOR core.h
sed -i "s/\<readl\>/dwc2_readl/g" *.c hcd.h hw.h
sed -i "s/\<writel\>/dwc2_writel/g" *.c hcd.h hw.h

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44675 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: Add sensible hw-defaults for dwc2
blogic [Wed, 11 Mar 2015 17:08:15 +0000 (17:08 +0000)]
lantiq: Add sensible hw-defaults for dwc2

Lantiq driver does not work with autodetected fifo sizes so use ones
from original ltq-hcd driver in dwc2. Other values can be
autodetected.

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44674 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: Configure gpio power output pin when initializing dwc2 usb
blogic [Wed, 11 Mar 2015 17:08:08 +0000 (17:08 +0000)]
lantiq: Configure gpio power output pin when initializing dwc2 usb

Port gpio code from original ltq-hcd driver to dwc2.

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44673 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: Add usb initialization bits from ltq-hcd to platform init
blogic [Wed, 11 Mar 2015 17:08:02 +0000 (17:08 +0000)]
lantiq: Add usb initialization bits from ltq-hcd to platform init

Add VR9 specific usb initialization bits from ltq-hcd to platform
initialization.

This patch is more of a proof-of-concept than production quality
since the initialization registers are different on other lantiq
platforms.

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44672 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoipset: Bump to 6.24
blogic [Wed, 11 Mar 2015 16:41:58 +0000 (16:41 +0000)]
ipset: Bump to 6.24

Included you'll find a patch to bump ipset to version 6.24. This
version supports the ip,fwmark set, which is needed for mwan3 1.6.

Signed-off-by: Jeroen Louwes <jeroen.louwes@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44671 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomac80211: add missing header file
nbd [Wed, 11 Mar 2015 16:36:35 +0000 (16:36 +0000)]
mac80211: add missing header file

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44670 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomac80211: remove obsolete patches
nbd [Wed, 11 Mar 2015 16:25:09 +0000 (16:25 +0000)]
mac80211: remove obsolete patches

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44669 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agocobalt: rename config file
blogic [Wed, 11 Mar 2015 16:22:01 +0000 (16:22 +0000)]
cobalt: rename config file

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44668 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agorpcd: update to latest git HEAD
blogic [Wed, 11 Mar 2015 15:56:51 +0000 (15:56 +0000)]
rpcd: update to latest git HEAD

adds 3 fixes from luka

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44666 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: improve WD's My Net Wi-fi Range Extender image creation
blogic [Wed, 11 Mar 2015 15:56:34 +0000 (15:56 +0000)]
ar71xx: improve WD's My Net Wi-fi Range Extender image creation

Previously, the generated images for the My Net Wi-fi Range Extender
wouldn't always work (and panic) due to the fixed mtd offsets and
sizes for the kernel and rootfs. This patch fixes the problem by
utilizing the shared Cybertan's partition parser to recalculate
the mtd partitions for every image dynamically everytime.

Reported-by: Pascal Paradis <peparadis@yahoo.com>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44665 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: generalize cybertan partition parser
blogic [Wed, 11 Mar 2015 15:56:27 +0000 (15:56 +0000)]
ar71xx: generalize cybertan partition parser

By removing the NL16 signature check, the parser can be
utilized by other devices like the WD My Net Wi-fi Range
Extender.

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44664 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: rename wrt160nl's trx partition parser
blogic [Wed, 11 Mar 2015 15:56:15 +0000 (15:56 +0000)]
ar71xx: rename wrt160nl's trx partition parser

This patch renames the partition parser from
wrt160nl to more generic cybertan.

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44663 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: fix WRT160NL and TP-Link partition parser patches
blogic [Wed, 11 Mar 2015 15:55:55 +0000 (15:55 +0000)]
ar71xx: fix WRT160NL and TP-Link partition parser patches

405-mtd-tp-link-partition-parser.patch was updating the
WRT160NL's partition parser Kconfig. This patch moves the
relevant change into the right file:
404-mtd-wrt160nl-trx-parser.patch

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44662 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoralink: FireWRT flash size is up to 16M.
blogic [Wed, 11 Mar 2015 15:55:28 +0000 (15:55 +0000)]
ralink: FireWRT flash size is up to 16M.

Signed-off-by: wengbj <fl.service@t-firefly.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44661 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoralink: add FireWRT IO multiplexing
blogic [Wed, 11 Mar 2015 15:55:16 +0000 (15:55 +0000)]
ralink: add FireWRT IO multiplexing

Signed-off-by: wengbj <fl.service@t-firefly.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44660 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: fix switched WLAN LEDs on TP-LINK Archer C5/C7
blogic [Wed, 11 Mar 2015 15:55:06 +0000 (15:55 +0000)]
ar71xx: fix switched WLAN LEDs on TP-LINK Archer C5/C7

ath10k is loaded before ath9k, so the 5GHz adapter becomes phy0.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44659 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoFix 3.18.8 breakage of UBI devices with EOF marker (e.g. WNDR4300)
blogic [Wed, 11 Mar 2015 15:54:52 +0000 (15:54 +0000)]
Fix 3.18.8 breakage of UBI devices with EOF marker (e.g. WNDR4300)

This commit re-adds a patch from 3.14 that is required for UBI block
devices with an EOF marker to be successfully mounted.

Signed-off-by: Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44658 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agojson-c: update to 0.12 and bump all depending services
blogic [Wed, 11 Mar 2015 15:54:33 +0000 (15:54 +0000)]
json-c: update to 0.12 and bump all depending services

Version 0.12 deprecates json_object_object_get and moves the header files around

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44657 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomac80211: Use newer firmware for ath10k
nbd [Wed, 11 Mar 2015 15:02:54 +0000 (15:02 +0000)]
mac80211: Use newer firmware for ath10k

Patch by Bryan Forbes <bryan@reigndropsfall.net>

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44656 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomac80211: update to wireless-testing 2015-03-09
nbd [Wed, 11 Mar 2015 15:02:47 +0000 (15:02 +0000)]
mac80211: update to wireless-testing 2015-03-09

Based on patch by Bryan Forbes <bryan@reigndropsfall.net>

Also update mt76 to update for API changes

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44655 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoiw: update to 3.17
nbd [Wed, 11 Mar 2015 15:02:32 +0000 (15:02 +0000)]
iw: update to 3.17

Patch by Bryan Forbes <bryan@reigndropsfall.net>

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44654 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: backport an export required by newer compat-wireless versions
nbd [Wed, 11 Mar 2015 15:02:16 +0000 (15:02 +0000)]
kernel: backport an export required by newer compat-wireless versions

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44653 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoppc44x: use the mtdsplit framework for the Taishan
kaloz [Wed, 11 Mar 2015 12:20:03 +0000 (12:20 +0000)]
ppc44x: use the mtdsplit framework for the Taishan

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44652 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobase-files: firstboot: pass down arguments such as -y to jffs2reset
luka [Tue, 10 Mar 2015 23:43:25 +0000 (23:43 +0000)]
base-files: firstboot: pass down arguments such as -y to jffs2reset

This brings back old behavior.

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44651 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: fix gpio-latch driver
blogic [Tue, 10 Mar 2015 20:19:54 +0000 (20:19 +0000)]
ar71xx: fix gpio-latch driver

gpio api has changed. the remove call no longer returns a value.

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44650 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: refresh patches
luka [Tue, 10 Mar 2015 16:11:44 +0000 (16:11 +0000)]
ar71xx: refresh patches

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44649 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: wpj588: add missing usb support
luka [Tue, 10 Mar 2015 16:11:39 +0000 (16:11 +0000)]
ar71xx: wpj588: add missing usb support

Signed-off-by: Luka Perkov <luka@openwrt.org>
Tested-By: Christian Mehlis <christian@m3hlis.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44648 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: Fix LED polarity for the TP-LINK TL-MR13U.
blogic [Tue, 10 Mar 2015 13:26:50 +0000 (13:26 +0000)]
ar71xx: Fix LED polarity for the TP-LINK TL-MR13U.

Please also backport to Barrier Breaker (this same patch applies there too).

Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44647 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: Fix board detection for the TP-LINK TL-MR13U.
blogic [Tue, 10 Mar 2015 13:26:44 +0000 (13:26 +0000)]
ar71xx: Fix board detection for the TP-LINK TL-MR13U.

Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44646 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: fix yaffs compile for >= v3.16
blogic [Tue, 10 Mar 2015 13:08:17 +0000 (13:08 +0000)]
kernel: fix yaffs compile for >= v3.16

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44643 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoralink: add missing symbol that broke full builds
blogic [Tue, 10 Mar 2015 11:03:16 +0000 (11:03 +0000)]
ralink: add missing symbol that broke full builds

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44642 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokirkwood: add missing symbol that broke full builds
blogic [Tue, 10 Mar 2015 11:03:10 +0000 (11:03 +0000)]
kirkwood: add missing symbol that broke full builds

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44641 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoau1000: build fails if the input layer is not selected
blogic [Tue, 10 Mar 2015 11:03:04 +0000 (11:03 +0000)]
au1000: build fails if the input layer is not selected

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44640 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoipq806x: add 2 missing symbols that broke a full build
blogic [Tue, 10 Mar 2015 11:02:52 +0000 (11:02 +0000)]
ipq806x: add 2 missing symbols that broke a full build

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44639 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar7: register_mtd_parser() does no longer have a return value
blogic [Tue, 10 Mar 2015 11:02:45 +0000 (11:02 +0000)]
ar7: register_mtd_parser() does no longer have a return value

Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44638 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoppc44x: upgrade and switch to 3.18
kaloz [Tue, 10 Mar 2015 10:00:41 +0000 (10:00 +0000)]
ppc44x: upgrade and switch to 3.18

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44637 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years ago6rd: make host dependency more specific
cyrus [Tue, 10 Mar 2015 08:43:54 +0000 (08:43 +0000)]
6rd: make host dependency more specific

Signed-off-by: Steven Barth <steven@midlink.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44636 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years ago6in4: make host dependency more specific
cyrus [Tue, 10 Mar 2015 08:43:40 +0000 (08:43 +0000)]
6in4: make host dependency more specific

Signed-off-by: Steven Barth <steven@midlink.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44635 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoebtables: revert "disable rpath" (closes: #19088)
nico [Mon, 9 Mar 2015 22:07:05 +0000 (22:07 +0000)]
ebtables: revert "disable rpath" (closes: #19088)

This reverts commit 9340723d70bce9d905c3f53b2bf415963153b34d.

Signed-off-by: Nicolas Thill <nico@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44634 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokmod-usb-dwc2: depends on udc-core (kmod-usb-gadget)
blogic [Mon, 9 Mar 2015 14:07:30 +0000 (14:07 +0000)]
kmod-usb-dwc2: depends on udc-core (kmod-usb-gadget)

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44633 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: ltq-ptm-{ar9, ase, xway}: fix alloc_netdev for 3.18
blogic [Mon, 9 Mar 2015 14:07:14 +0000 (14:07 +0000)]
lantiq: ltq-ptm-{ar9, ase, xway}: fix alloc_netdev for 3.18

buildbot complained about
ifxmips_ptm_adsl.c:1445:70: error: macro "alloc_netdev" requires 4 arguments, but only 3 given
         g_net_dev[i] = alloc_netdev(0, g_net_dev_name[i], ether_setup);
                                                                      ^
fix that similar to the change made to ltq_ptm_vdsl.c
compile tested only.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44632 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoncm, qmi, mbim: Add dependency on wwan package
blogic [Mon, 9 Mar 2015 14:07:06 +0000 (14:07 +0000)]
ncm, qmi, mbim: Add dependency on wwan package

The wwan package holds the hotplug script to set mobile broadband
interfaces (un)available. Add it as a dependency to comgt-ncm,
uqmi and umbim.

Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44631 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoncm: Remove unnecessary proto_set_available commands
blogic [Mon, 9 Mar 2015 14:06:50 +0000 (14:06 +0000)]
ncm: Remove unnecessary proto_set_available commands

Interface should not be set unavailable in all error cases,
returning 1 is enough.

Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44630 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agowwan: Improve USB modem hotplug script
blogic [Mon, 9 Mar 2015 14:06:30 +0000 (14:06 +0000)]
wwan: Improve USB modem hotplug script

Adds ncm proto to the list of checked protocols, sets interfaces
unavailable on device removal and removes the unnecessary ifup
command.

Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44629 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agocomgt, wwan: Move USB data files to wwan package
blogic [Mon, 9 Mar 2015 14:06:20 +0000 (14:06 +0000)]
comgt, wwan: Move USB data files to wwan package

USB modem data files should be a part of the wwan package, which
actually uses them unlike comgt.

Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44628 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoutil-linux: fix pkgconfig files
nico [Mon, 9 Mar 2015 02:02:50 +0000 (02:02 +0000)]
util-linux: fix pkgconfig files

Upstream choose to not rely on configure.ac and recursively expand paths in pkgconfig files at make time,
leading to absolute /usr/include & /usr/lib in there... And we don't want that when cross-compiling...

Signed-off-by: Nicolas Thill <nico@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44627 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobcm53xx: fix printing NAND controller revision
rmilecki [Sat, 7 Mar 2015 12:31:42 +0000 (12:31 +0000)]
bcm53xx: fix printing NAND controller revision

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44622 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomvebu: add backported patch to reenable hw i/o coherency
kaloz [Fri, 6 Mar 2015 18:57:49 +0000 (18:57 +0000)]
mvebu: add backported patch to reenable hw i/o coherency

Reported-by: Claudio Leite <leitec@staticky.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44621 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoar71xx: add support for compex wpj558
luka [Fri, 6 Mar 2015 14:41:57 +0000 (14:41 +0000)]
ar71xx: add support for compex wpj558

OpenWrt can be flashed with following uboot commands:

tftpboot 0x80500000 openwrt-ar71xx-generic-wpj558-16M-squashfs-sysupgrade.bin
erase 0x9f030000 +$filesize
cp.b $fileaddr 0x9f030000 $filesize

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44620 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoodhcpd: improvements for DHCPv4 and compile fixes
cyrus [Fri, 6 Mar 2015 14:41:07 +0000 (14:41 +0000)]
odhcpd: improvements for DHCPv4 and compile fixes

Signed-off-by: Steven Barth <steven@midlink.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44619 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoopenssl: enable ARM assembly acceleration
blogic [Fri, 6 Mar 2015 07:57:10 +0000 (07:57 +0000)]
openssl: enable ARM assembly acceleration

Tested myself on ixp4xx and mvebu, and (originally)
by Daniel on i.MX6. Also tested on a MIPS target,
to make sure the change to ASFLAGS does not break things.

Based on a patch submitted by Daniel Drown:

https://lists.openwrt.org/pipermail/openwrt-devel/2014-July/026639.html

Signed-off-by: Claudio Leite <leitec@staticky.com>
Signed-off-by: Daniel Drown <dan-openwrt@drown.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44618 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoswconfig: fix build with linux 4.0
blogic [Fri, 6 Mar 2015 07:57:03 +0000 (07:57 +0000)]
swconfig: fix build with linux 4.0

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44617 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoipq806x: rename patches in patches-3.18
blogic [Fri, 6 Mar 2015 07:56:58 +0000 (07:56 +0000)]
ipq806x: rename patches in patches-3.18

This will allow ipq806x to support multiple kernel version more easily.

Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44616 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: move KERNFS to generic config
blogic [Fri, 6 Mar 2015 07:56:47 +0000 (07:56 +0000)]
kernel: move KERNFS to generic config

KERNFS symbol is selected by SYSFS, so place it in generic config.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44615 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: disable ARCH_NEEDS_CPU_IDLE_COUPLED
blogic [Fri, 6 Mar 2015 07:56:34 +0000 (07:56 +0000)]
kernel: disable ARCH_NEEDS_CPU_IDLE_COUPLED

Disable ARCH_NEEDS_CPU_IDLE_COUPLED by-default in generic config, since
only one platfrom (omap) needs them.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44614 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: disbale HAMRADIO in generic config
blogic [Fri, 6 Mar 2015 07:56:21 +0000 (07:56 +0000)]
kernel: disbale HAMRADIO in generic config

HAMRADIO enabled in all generic configs, but no one platform directly
use related drivers/protocols. This symbol is only used for kmod-ax25
package modules. Furthermore, half of platforms explicitly disables
this symbol, what silently disables build of modules for kmod-ax25
package.

So disable HAMRADIO by-default in generic config, add it to kmod-ax25
package and remove it from platform specific configs.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44613 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: move MTD_SPLIT_SUPPORT to generic config
blogic [Fri, 6 Mar 2015 07:56:08 +0000 (07:56 +0000)]
kernel: move MTD_SPLIT_SUPPORT to generic config

CONFIG_MTD_SPLIT_SUPPORT symbol default value is 'y' and many platform
specific configs explicitly enables it, while no one platform disables
this symbol. So place it in generic config and remove from platform
specific configs.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44612 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: remove GENERIC_NET_UTILS from platform configs
blogic [Fri, 6 Mar 2015 07:55:57 +0000 (07:55 +0000)]
kernel: remove GENERIC_NET_UTILS from platform configs

CONFIG_GENERIC_NET_UTILS is selected by CONFIG_NET and already enabled
in generic config, so we don't need this symbol in platform specific
configurations.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44611 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokirkwood: drop support for 3.14
luka [Thu, 5 Mar 2015 23:43:27 +0000 (23:43 +0000)]
kirkwood: drop support for 3.14

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44610 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokirkwood: switch to 3.18
luka [Thu, 5 Mar 2015 23:43:24 +0000 (23:43 +0000)]
kirkwood: switch to 3.18

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44609 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agogeneric: add CONFIG_FW_LOADER_USER_HELPER symbol
luka [Thu, 5 Mar 2015 23:43:21 +0000 (23:43 +0000)]
generic: add CONFIG_FW_LOADER_USER_HELPER symbol

Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44608 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agolantiq: fix netdev setup in ltq-ptm-vdsl
blogic [Thu, 5 Mar 2015 20:25:18 +0000 (20:25 +0000)]
lantiq: fix netdev setup in ltq-ptm-vdsl

The initial fix for 3.18 in r44346 wrongly treated the newly added
parameter of alloc_netdev to be another function pointer, causing
ether_config to be skipped during ptm netdev init.
Fix this by partially reverting r44346 and properly setting the newly
added macro parameter.
(Tested on VRX200 board)

A similar change might be needed for ltq-ptm-adsl as well.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44607 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: add ip_vti tunnel module
blogic [Thu, 5 Mar 2015 20:25:11 +0000 (20:25 +0000)]
kernel: add ip_vti tunnel module

IP VTI (Virtual Tunnel Interface) is used to create a virtual device
for IPsec VPN (similar to OpenVPN).

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44606 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agomtd: fix md5sum error checking
blogic [Thu, 5 Mar 2015 20:25:02 +0000 (20:25 +0000)]
mtd: fix md5sum error checking

In mtd_verify(), the return value of md5sum() has been
interpreted as error if nonzero, while the function
returns number of processed bytes, which caused
mtd_verify() to always fail.

This patch fixes error checking to interpret only
negative values as errors.

Signed-off-by: Zefir Kurtisi <zefir.kurtisi@neratec.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44605 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoat91: add SAMA5D3-Xplained board UBI parameters to makefile.
blogic [Thu, 5 Mar 2015 20:24:57 +0000 (20:24 +0000)]
at91: add SAMA5D3-Xplained board UBI parameters to makefile.

Signed-off-by: Songjun Wu <songjun.wu@atmel.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44604 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoath5k: fix reset race
blogic [Thu, 5 Mar 2015 20:24:50 +0000 (20:24 +0000)]
ath5k: fix reset race

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44603 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoath5k: channel change fix
blogic [Thu, 5 Mar 2015 20:24:45 +0000 (20:24 +0000)]
ath5k: channel change fix

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44602 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobrcm2708: add another missing symbol
blogic [Thu, 5 Mar 2015 20:24:39 +0000 (20:24 +0000)]
brcm2708: add another missing symbol

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44601 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agogeneric: add USB_DWC2 missing symbols
blogic [Thu, 5 Mar 2015 20:24:33 +0000 (20:24 +0000)]
generic: add USB_DWC2 missing symbols

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44600 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agogeneric: add missing symbols for 4.0
blogic [Thu, 5 Mar 2015 20:24:28 +0000 (20:24 +0000)]
generic: add missing symbols for 4.0

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44599 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agonetfilter: fix nf_nat_redirect dependencies for 3.19 and 4.0
blogic [Thu, 5 Mar 2015 20:24:22 +0000 (20:24 +0000)]
netfilter: fix nf_nat_redirect dependencies for 3.19 and 4.0

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44598 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: backport bcma changes to 3.19 and 4.0
rmilecki [Wed, 4 Mar 2015 07:08:39 +0000 (07:08 +0000)]
kernel: backport bcma changes to 3.19 and 4.0

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44597 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agobcm53xx: switch to IRQ buttons (keys)
rmilecki [Tue, 3 Mar 2015 23:15:55 +0000 (23:15 +0000)]
bcm53xx: switch to IRQ buttons (keys)

Now bcma provides IRQ domain we don't have to poll anymore.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44596 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel/mac80211: backport bcma changes from 4.1
rmilecki [Tue, 3 Mar 2015 23:15:49 +0000 (23:15 +0000)]
kernel/mac80211: backport bcma changes from 4.1

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44595 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agogeneric: upgrade to 3.14.34
jogo [Tue, 3 Mar 2015 14:39:52 +0000 (14:39 +0000)]
generic: upgrade to 3.14.34

Fixes several issues in the network stack.

Full changelog:
* https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.33
* https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.14.34

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44594 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agogeneric: upgrade to 3.18.8
jogo [Tue, 3 Mar 2015 14:39:49 +0000 (14:39 +0000)]
generic: upgrade to 3.18.8

Fixes several issues in the network stack.

Full changelog:
* https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.18.8

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44593 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: revert a broken chunk in the mips module reloc patch fix
nbd [Mon, 2 Mar 2015 20:33:02 +0000 (20:33 +0000)]
kernel: revert a broken chunk in the mips module reloc patch fix

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44592 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agokernel: fix the mips module relocation patch for 3.19+
nbd [Mon, 2 Mar 2015 04:42:17 +0000 (04:42 +0000)]
kernel: fix the mips module relocation patch for 3.19+

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44590 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoFix download URL of the 4.x kernel.
mb [Sun, 1 Mar 2015 20:44:33 +0000 (20:44 +0000)]
Fix download URL of the 4.x kernel.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44589 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoadm5120: switch kernel to 3.18
rmilecki [Sun, 1 Mar 2015 16:24:15 +0000 (16:24 +0000)]
adm5120: switch kernel to 3.18

Tested by Jonas on WP54g, thank you!

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44588 3c298f89-4303-0410-b956-a3cf2f4a3e73

9 years agoadm5120: enable low_mem
rmilecki [Sun, 1 Mar 2015 16:24:11 +0000 (16:24 +0000)]
adm5120: enable low_mem

Most devices have only 16 MiB of RAM, this will allow them to boot
without OOM.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44587 3c298f89-4303-0410-b956-a3cf2f4a3e73