[OpenWrt-Devel] [Patch][(kernel|generic)] Add port ingress rate limit function for AR8337N switch

2014-05-27 Thread luny
hi, all: we will try to add one feature for AR8337 switch: port ingress rate limit. we can use swconfig extension command to implement it as below example: swconfig dev eth0 set extension_switch port_rate_limit set port 1 rate 10 Note: in this example, 10 means 10Kbps. 1. We use one

[OpenWrt-Devel] [PATCH] [packages] libftdi: disable C++ bindings

2014-05-27 Thread Dirk Neukirchen
On 26.05.2014 09:26, Russell Senior wrote: At least on ar71xx, if libftdi finds Boost, it tries to compile C++ libraries and dies horribly on some bogus looking assembler instructions. Disabling boost allows libftdi to build. Signed-off-by: Russell Senior russ...@personaltelco.net ---

[OpenWrt-Devel] [PATCH] uqmi: small bugfixes and add --stop-network

2014-05-27 Thread Matti Laakso
This is a set of small patches to uqmi. It contains fixes for command line help, autoconnect, and printing of service versions, and implements a command to stop the network connection. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

[OpenWrt-Devel] [PATCH 1/4] Minor fixes to command line help

2014-05-27 Thread Matti Laakso
Signed-off-by: Matti Laakso malaa...@elisanet.fi --- commands-wds.h | 2 +- main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands-wds.h b/commands-wds.h index bd4b221..ea64e82 100644 --- a/commands-wds.h +++ b/commands-wds.h @@ -13,6 +13,6 @@

[OpenWrt-Devel] [PATCH 2/4] Fix autoconnect

2014-05-27 Thread Matti Laakso
Signed-off-by: Matti Laakso malaa...@elisanet.fi --- commands-wds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands-wds.c b/commands-wds.c index 58053c2..91cf15c 100644 --- a/commands-wds.c +++ b/commands-wds.c @@ -52,7 +52,7 @@ cmd_wds_set_password_prepare(struct

[OpenWrt-Devel] [PATCH 3/4] Add --stop-network

2014-05-27 Thread Matti Laakso
Signed-off-by: Matti Laakso malaa...@elisanet.fi --- commands-wds.c | 15 +++ commands-wds.h | 3 +++ 2 files changed, 18 insertions(+) diff --git a/commands-wds.c b/commands-wds.c index 91cf15c..ce7d715 100644 --- a/commands-wds.c +++ b/commands-wds.c @@ -1,9 +1,12 @@ +#include

[OpenWrt-Devel] [PATCH 4/4] Fix printing of service versions

2014-05-27 Thread Matti Laakso
Signed-off-by: Matti Laakso malaa...@elisanet.fi --- commands.c | 4 1 file changed, 4 insertions(+) diff --git a/commands.c b/commands.c index 4680511..8c06503 100644 --- a/commands.c +++ b/commands.c @@ -20,16 +20,20 @@ static void no_cb(struct qmi_dev *qmi, struct qmi_request *req,

[OpenWrt-Devel] [PATCH] busybox: udhcpc source IP rebind patch

2014-05-27 Thread Hans Dedecker
Patch sets the source IP address of DHCP request messages during rebind to the IP address assigned to the udhcpc client. Source address 0.0.0.0 can only be used by a client prior to obtaining its IP address (see RFC2131 ยง 4.1). Source IP address behavior lines up now with the ISC dhcp client

Re: [OpenWrt-Devel] [PATCH] uqmi: small bugfixes and add --stop-network

2014-05-27 Thread Felix Fietkau
On 2014-05-27 21:12, Matti Laakso wrote: This is a set of small patches to uqmi. It contains fixes for command line help, autoconnect, and printing of service versions, and implements a command to stop the network connection. Applied, thanks. - Felix

Re: [OpenWrt-Devel] [PATCH RESEND] [kernel] ubifs: remove obsolete CONFIG_UBIFS_FS_XATTR symbol

2014-05-27 Thread Felix Fietkau
On 2014-05-27 04:44, Daniel Golle wrote: 550-ubifs-symlink-xattr-support.patch contains a reference to the by now obsolete config symbol CONFIG_UBIFS_FS_XATTR which leads to the functionality originally added by the patch in r30794 being left-out during compile since commit 1bdcc63112a0

Re: [OpenWrt-Devel] [PATCH] Fix xen domU kmod-xen-kbd package

2014-05-27 Thread Luiz Angelo Daros de Luca
Tested on xen-4.2.3_02-0.7.1. It used to work before because xen-kbddev is optional, maybe only used for mouse/GUI. The driver now loads correctly: [4.865685] input: Xen Virtual Keyboard as /devices/virtual/input/input0 [4.866167] input: Xen Virtual Pointer as

[OpenWrt-Devel] [PATCH] Compile xen-pci-frontend as module

2014-05-27 Thread luizluca
From: Luiz Angelo Daros de Luca luizl...@gmail.com There is a package for /drivers/pci/xen-pcifront.ko (kmod-xen-pcidev) However, the kernel module was defined to be built-in and not loadable. (Is there any special reason?) This patch changes (back?) the xen-pcifront.ko to loadable module

Re: [OpenWrt-Devel] [PATCH] Compile xen-pci-frontend as module

2014-05-27 Thread Luiz Angelo Daros de Luca
Tested on xen-4.2.3_02-0.7.1 xen-pcifront.ko is only used for PCI Passthrough and not necessary for normal network/block usage. Before this, this module was bulltin in kernel Can anyone with commit access take a look at this? --- Luiz Angelo Daros de Luca, Me.

[OpenWrt-Devel] [PATCH] base-files: removes logging

2014-05-27 Thread Nuno Goncalves
Since logd haven't started at this point, logging does not work. Signed-off-by: Nuno Goncalves nuno...@gmail.com --- package/base-files/files/etc/init.d/sysfixtime | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package/base-files/files/etc/init.d/sysfixtime

Re: [OpenWrt-Devel] [PATCH] [packages] libftdi: disable C++ bindings

2014-05-27 Thread Russell Senior
Dirk == Dirk Neukirchen dirkneukirc...@web.de writes: Dirk alternatively deactivate building of libftdi++ during which the Dirk error happens +1 -- Russell Senior, President russ...@personaltelco.net ___ openwrt-devel mailing list