[OpenWrt-Devel] Request for Support for namespaces in uci and netifd

2015-08-14 Thread Ashok Rao
I've started playing around with namespaces and it is quite powerful. Allows one to build multiple routers and connect them all inside the same low cost router platform. However there doesn't seem to be any support for namespace in the config files and generally within openwrt so developing a pac

[OpenWrt-Devel] GRE and multicast in netifd

2015-08-14 Thread Nick Podolak
Is there a way using uci/netifd to create a GRE tunnel with the multicast link flag enabled? I can make a tunnel and then use #>ip link set dev gre-test multicast on but I can't seem to find how to do it any other, preferable autoamtic, way. Even if there is a way to make multicast=on the global

Re: [OpenWrt-Devel] [PATCH 6/6] bcm53xx: R8000 handle PEX8603 switch

2015-08-14 Thread Hauke Mehrtens
On 08/14/2015 06:03 AM, Ian Kent wrote: > On Wed, 2015-08-12 at 22:01 +0200, Hauke Mehrtens wrote: >> On 07/15/2015 12:11 PM, Ian Kent wrote: >>> On Tue, 2015-07-14 at 18:19 +0200, Rafał Miłecki wrote: On 28 June 2015 at 05:37, Ian Kent wrote: > Let me rework this using the bus number as

Re: [OpenWrt-Devel] [PATCH 1/9] CC PowerCloud CAP324 Kernel BSP

2015-08-14 Thread Jonas Gorski
Welcome back ;) On Sun, Aug 2, 2015 at 7:03 AM, Daniel Dickinson wrote: > Signed-off-by: Daniel Dickinson Drop the CC from the subject; it's used for patches for the chaos_chalmer branch, while this is for trunk. A small description of the device would be nice to have, try not to have an empty

Re: [OpenWrt-Devel] [PATCH 7/9] CC PowerCloud CR5000 Kernel BSP

2015-08-14 Thread Jonas Gorski
On Sun, Aug 2, 2015 at 9:30 AM, Daniel Dickinson wrote: Eh, also replace the "BSP" with "support", at least when I hear BSP I am thinking of a full build environment, not just a single kernel patch. > Signed-off-by: Daniel Dickinson > --- > target/linux/ar71xx/config-4.1 |

[OpenWrt-Devel] [PATCH 1/5] kernel: move linux, part-probe dt parsing in generic code

2015-08-14 Thread Mathieu Olivari
The "linux,part-probe" dts parsing is a pretty neat generic feature. It has been posted to kernel.org and could easily be reused by all targets. This change moves the patch to the 3.18 and 4.1 generic folders, and makes the feature available to all platforms who may want to use it. Signed-off-by:

[OpenWrt-Devel] [PATCH 2/5] ipq806x: add hwspinlock support

2015-08-14 Thread Mathieu Olivari
This change cherry-picks the following 3 changes from linux-next: *fb7737 hwspinlock/core: add device tree support *19a0f6 hwspinlock: qcom: Add support for Qualcomm HW Mutex block *bd5717 hwspinlock: qcom: Correct msb in regmap_field We're also adding a patch to add the hardware spinlock device n

[OpenWrt-Devel] [PATCH 5/5] ipq806x: switch AP148 to using SMEM based MTD parser

2015-08-14 Thread Mathieu Olivari
*Enable SMEM MTD parser and its dependencies (SMEM & HW spinlocks) in the kernel config *Replaces the MTD layout in DT by the dynamic layout provided by the SMEM parser for AP148 Using the OF based parser is still possible on platforms which have a fixed MTD partition layout. Signed-off-by: Mat

[OpenWrt-Devel] [PATCH 0/5] ipq806x: add support for SMEM based MTD parser

2015-08-14 Thread Mathieu Olivari
This patch sets intents to add a new MTD parser for QCOM parser which makes use of the information available in SMEM to provide the flash layout. We're also cherry-picking drivers for SMEM & HW spinlocks from LKML as dependencies. This has been tested on AP148, both for NOR & NAND flash. The MTD l

[OpenWrt-Devel] [PATCH 4/5] ipq806x: add QCOM SMEM based MTD parser

2015-08-14 Thread Mathieu Olivari
This patch adds a new parser which uses the SMEM available on IPQ and some other QCOM platforms to map the MTD partitions. Signed-off-by: Mathieu Olivari --- ...37-mtd-add-SMEM-parser-for-QCOM-platforms.patch | 277 + ...37-mtd-add-SMEM-parser-for-QCOM-platforms.patch | 277 +

[OpenWrt-Devel] [PATCH 3/5] ipq806x: add SMEM support

2015-08-14 Thread Mathieu Olivari
2 patches are cherry-picked from the following LKML thread: *https://lkml.org/lkml/2015/4/11/208 The last patch (036-soc-qcom-add-smem-to-IPQ806x-platforms.patch) is adding the corresponding DT nodes required for IPQ806x. Signed-off-by: Mathieu Olivari --- ...soc-qcom-Add-device-tree-binding-fo

[OpenWrt-Devel] [PATCH] [netifd] enable MULTICAST on GRE

2015-08-14 Thread Nick Podolak
This patch enables multicast by for gre tunnels. I've only ever used GRE to enable routing algorithms and other multicast applications over otherwise non-multicast capable links (wan, ipsec) so this default behavior makes more sense to me. Signed-off-by: Nicholas Podolak Index: netifd-2015-06-0

Re: [OpenWrt-Devel] [PATCH 6/6] bcm53xx: R8000 handle PEX8603 switch

2015-08-14 Thread Ian Kent
On Fri, 2015-08-14 at 19:55 +0200, Hauke Mehrtens wrote: > On 08/14/2015 06:03 AM, Ian Kent wrote: > > On Wed, 2015-08-12 at 22:01 +0200, Hauke Mehrtens wrote: > >> On 07/15/2015 12:11 PM, Ian Kent wrote: > >>> On Tue, 2015-07-14 at 18:19 +0200, Rafał Miłecki wrote: > On 28 June 2015 at 05:37,

Re: [OpenWrt-Devel] [PATCH 6/6] bcm53xx: R8000 handle PEX8603 switch

2015-08-14 Thread Ian Kent
On Sat, 2015-08-15 at 09:55 +0800, Ian Kent wrote: > On Fri, 2015-08-14 at 19:55 +0200, Hauke Mehrtens wrote: > > On 08/14/2015 06:03 AM, Ian Kent wrote: > > > On Wed, 2015-08-12 at 22:01 +0200, Hauke Mehrtens wrote: > > >> On 07/15/2015 12:11 PM, Ian Kent wrote: > > >>> On Tue, 2015-07-14 at 18:19

[OpenWrt-Devel] Change realtime graphs interval

2015-08-14 Thread Fernando Frediani
Guys, Have been searching and couldn´t find anything in the configuration. How can I change the Realtime Graphs update time from 3 seconds to 1 second ? Do I need to recompile or is it something changeable in the configuration ? Thanks Fernando ___

Re: [OpenWrt-Devel] [PATCH 1/1] [polarssl] Fix build failures due to PKG_NAME != dir name

2015-08-14 Thread Daniel Dickinson
On 2015-08-12 12:21 AM, Yousong Zhou wrote: On 11 August 2015 at 10:00, Yousong Zhou wrote: On 2 August 2015 at 19:46, Daniel Dickinson wrote: Packages that depend on PolarSSL fail to build because polarssl's InstallDev section never actually gets executed because (prior to this patch) the pa

Re: [OpenWrt-Devel] [PATCH 6/6] bcm53xx: R8000 handle PEX8603 switch

2015-08-14 Thread Ian Kent
On Sat, 2015-08-15 at 09:55 +0800, Ian Kent wrote: > On Fri, 2015-08-14 at 19:55 +0200, Hauke Mehrtens wrote: > > On 08/14/2015 06:03 AM, Ian Kent wrote: > > > On Wed, 2015-08-12 at 22:01 +0200, Hauke Mehrtens wrote: > > >> On 07/15/2015 12:11 PM, Ian Kent wrote: > > >>> On Tue, 2015-07-14 at 18:19

[OpenWrt-Devel] Please ignore until rework (was Re: [PATCH 0/9] Resolved email/series creation issues: PowerCloud device support)

2015-08-14 Thread Daniel Dickinson
Hi all, I tried to rush the patch series out the door and even though it was supposed to be simple port from patches I had done (but not released) for BB, I did a bunch of typos I didn't detect until I actually flashed to a device. I am reworking and will resubmit once I have tested on actua