[LEDE-DEV] [PATCH v2] dnsmasq: bump to 2.80test2

2018-05-12 Thread Kevin Darbyshire-Bryant
Refresh patches and backport upstream to current HEAD: 1f1873a Log warning on very large cachesize config, instead of truncating it. 0a496f0 Do unsolicited RAs for interfaces which appear after dnsmasq startup. e27825b Fix logging in previous. 1f60a18 Retry SERVFAIL DNSSEC queries to a different

[LEDE-DEV] [PATCH v2] ipq806x: Expand TP-Link C2600 os-image partition

2018-05-12 Thread Joris de Vries
v2: Adjust base address in name as well. The default image does not fit 2MB anymore, expand os-image partition to 4MB. Run-tested on TP-Link Archer C2600. Signed-off-by: Joris de Vries --- .../files-4.14/arch/arm/boot/dts/qcom-ipq8064-c2600.dts | 6 +++---

[LEDE-DEV] [PATCH] ipq806x: Expand TP-Link C2600 os-image partition

2018-05-12 Thread Joris de Vries
The default image does not fit 2MB anymore, expand os-image partition to 4MB. Run-tested on TP-Link Archer C2600. Signed-off-by: Joris de Vries --- .../files-4.14/arch/arm/boot/dts/qcom-ipq8064-c2600.dts | 4 ++-- tools/firmware-utils/src/tplink-safeloader.c

Re: [LEDE-DEV] [PATCH v2] dnsmasq: bump to 2.80test2

2018-05-12 Thread Hans Dedecker
On Sat, May 12, 2018 at 4:37 PM, Kevin Darbyshire-Bryant wrote: > Refresh patches and backport upstream to current HEAD: > > 1f1873a Log warning on very large cachesize config, instead of truncating it. > 0a496f0 Do unsolicited RAs for interfaces which appear after

[LEDE-DEV] [PATCH 2/5] staging: mt7621-pci: Remove redundant owner assignment

2018-05-12 Thread Rosen Penev
From: Christian Lütke-Stetzkamp Remove the owner assignment form the platform driver as platform_driver_register() already initializes the owner. Found using coccinelle. Signed-off-by: Christian Lütke-Stetzkamp Signed-off-by: Greg Kroah-Hartman

[LEDE-DEV] [PATCH 3/5] staging: mt7621-pci: improve interrupt mapping

2018-05-12 Thread Rosen Penev
From: NeilBrown As the Interrupts for the PCI adapters are listed in devicetree we shouldn't need to have them explicit in the code. The simplest way to do this is to use of_irq_parse_and_map_pci() and specify an interrupt-map which identifies the different PCI hosts by

[LEDE-DEV] [PATCH 1/5] ramips: Move PCI driver to files directory

2018-05-12 Thread Rosen Penev
This will make it easier to port upstream code. Signed-off-by: Rosen Penev --- .../ramips/files-4.14/arch/mips/pci/pci-mt7621.c | 836 .../0004-MIPS-ralink-add-MT7621-pcie-driver.patch | 843 + 2 files changed, 837 insertions(+), 842

[LEDE-DEV] [PATCH 5/5] staging: mt7621-pci: remove unnecessary resource details.

2018-05-12 Thread Rosen Penev
From: NeilBrown These resources are extracted from devicetree, so they aren't needed here. Signed-off-by: NeilBrown Signed-off-by: Greg Kroah-Hartman --- .../linux/ramips/files-4.14/arch/mips/pci/pci-mt7621.c | 17

[LEDE-DEV] [PATCH 4/5] staging: mt7621-pci: remove conditional compilation.

2018-05-12 Thread Rosen Penev
From: NeilBrown Code currently defines: and then compiles code only if they are defined. We might want to disable some of these via devicetree one day, but for now just remove the #defines and the conditions - all the code for different ports is easy to identify.