[OpenWrt-Devel] 答复: 答复: how do I troubleshoot Kernel Panic

2014-02-20 Thread Alan.Hoo
dear all : have you porting the KDump to OpenWRT System ? Is there have an opkg package available to download? BR Alan.Hoo,Code Monkey -邮件原件- 发件人: openwrt-devel-boun...@lists.openwrt.org [mailto:openwrt-devel-boun...@lists.openwrt.org] 代表 Alan.Hoo 发送时间: 2014年2月20日 15:44 收件人:

[OpenWrt-Devel] where is KDump??

2014-02-20 Thread Alan.Hoo
dear all : have you porting the KDump to OpenWRT System ? is there an KDump package available to download ? BR Alan.Hoo,Code Monkey ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

Re: [OpenWrt-Devel] where is KDump??

2014-02-20 Thread Yousong Zhou
Hi, On Thu, 20 Feb 2014, Alan.Hoo wrote: dear all :      have you porting the KDump to OpenWRT System ? is there an KDump package available to download ? Kdump is part of kexec-tools, you can find it package/boot/kexec-tools. It is not included in by default. You can search for

[OpenWrt-Devel] [PATCH] imx6: enable IMX6 watchdog

2014-02-20 Thread Tim Harvey
Signed-off-by: Tim Harvey thar...@gateworks.com --- target/linux/imx6/config-3.10 | 2 +- target/linux/imx6/config-3.13 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/imx6/config-3.10 b/target/linux/imx6/config-3.10 index 3dad5b6..3e69d68 100644 ---

[OpenWrt-Devel] [PATCH] kernel: e100: depend on mii

2014-02-20 Thread Stijn Tintel
Building kmod-e100 fails with this error: Package kmod-e100 is missing dependencies for the following libraries: mii.ko Have kmod-e100 depend on kmod-mii to fix this. Signed-off-by: Stijn Tintel st...@linux-ipv6.be --- package/kernel/linux/modules/netdevices.mk | 2 +- 1 file changed, 1

Re: [OpenWrt-Devel] [PATCH] imx6: update Ventana dts

2014-02-20 Thread Luka Perkov
Hi Tim, On Thu, Feb 20, 2014 at 08:12:59AM -0800, Tim Harvey wrote: Update the Ventana device-tree to match upstream: - Add IMX6Q/IMX6DL variants for GW54xx/GW53xx/GW52xx/GW51xx - align pinctrl with upstream - consolidate multiple patches into one Signed-off-by: Tim Harvey

Re: [OpenWrt-Devel] [PATCH] imx6: enable IMX6 watchdog

2014-02-20 Thread Luka Perkov
Hi Tim, On Thu, Feb 20, 2014 at 08:11:44AM -0800, Tim Harvey wrote: Signed-off-by: Tim Harvey thar...@gateworks.com --- target/linux/imx6/config-3.10 | 2 +- target/linux/imx6/config-3.13 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Applied in r39643. Thank you. Luka

Re: [OpenWrt-Devel] Openwrt future release strategy? kernel strategy?

2014-02-20 Thread Pasi Kärkkäinen
Hello, What is the current plan regarding the next releases? In 2012 it sounded like the goal was to move to a more rapid release strategy, maybe something every 6 months. https://lists.openwrt.org/pipermail/openwrt-devel/2012-August/016427.html But that has not been the outcome during

Re: [OpenWrt-Devel] [PATCH] kernel: hwmon: GSC fix negative temps

2014-02-20 Thread Hartmut Knaack
Hi, first off, a short description would have been nice, would make it easier to understand the problem and your solution. So, from what I could see, this driver is already in here for 1 year and 4 months, though I could not yet find it upstream. How comes? Last time I submitted a driver to

Re: [OpenWrt-Devel] [PATCH] kernel: hwmon: GSC fix negative temps

2014-02-20 Thread Hartmut Knaack
Hartmut Knaack schrieb: Hi, first off, a short description would have been nice, would make it easier to understand the problem and your solution. So, from what I could see, this driver is already in here for 1 year and 4 months, though I could not yet find it upstream. How comes? Last time

[OpenWrt-Devel] luci-lib-core broken depends

2014-02-20 Thread Gioacchino Mazzurco
Hi all! One package of mine depends on luci-lib-core and in particular for the ip library, but seems that the luci-lib-core Makefile miss the nixio and some other and cause problems at runtime /usr/bin/lua: /usr/lib/lua/luci/ip.lua:20: module 'nixio' not found: no field

Re: [OpenWrt-Devel] luci-lib-core broken depends

2014-02-20 Thread Gioacchino Mazzurco
On Friday 21 February 2014 02:28:20 Gioacchino Mazzurco wrote: /usr/bin/lua: /usr/lib/lua/luci/util.lua:31: module 'luci.template.parser' not found: I have took a look at the code, this dependency inside the core doesn't make much sense, because we are depending from the web module inside the

[OpenWrt-Devel] [PATCH] Oolite V1.0 Support

2014-02-20 Thread Lars Bøgild Thomsen
Hi, First of all my apologies if I don't follow the correct procedure to the letter, but this is my first attempt at feeding changes into OpenWrt. I have added support for the Oolite V1.0 AR9331 module. I have attached a patch to the git head as of right now. If you prefer to pull from git,

[OpenWrt-Devel] [PATCH] cns3xxx: ethernet - clean up tx descs only when needed

2014-02-20 Thread Tim Harvey
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 thar...@gateworks.com ---

[OpenWrt-Devel] [PATCH] cns3xxx: ethernet - resolve SMP issue

2014-02-20 Thread Tim Harvey
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