Re: [OpenWrt-Devel] [PATCH 1/2] ppp: fix printing of DNS/WINS addresses

2014-05-06 Thread Yousong Zhou
Hi, Nathan. On 7 May 2014 13:24, Nathan Hintz wrote: > > Signed-off-by: Nathan Hintz > --- > Re-send of the following: http://patchwork.openwrt.org/patch/3246/ > > .../ppp/patches/502-fix-ms-dns-and-ms-wins-print.patch | 17 > + > 1 file changed, 17 insertions(+) > create mo

Re: [OpenWrt-Devel] [PATCH 2/2] ppp: fix o_special option printing

2014-05-06 Thread Yousong Zhou
Hi, Nathan. On 7 May 2014 13:25, Nathan Hintz wrote: > > PPPD crashes (SEGV) when the 'dump' or 'dryrun' options are specified and > an option defined internally as "o_special" with an option flag of > "OPT_A2STRVAL" is used. The crash occurs because the option value is not > saved when the para

Re: [OpenWrt-Devel] Looking for someone with WNR3500L V1

2014-05-06 Thread Rafał Miłecki
On 7 May 2014 02:09, Owen Kirby wrote: > Did a sysupgrade to the latest bcrm47xx trunk images and tried to load > the network up with some traffic (connected a few laptops to the LAN > ports and ran iperf between each other and the WNDR3700v3) Nothing came > up in the kernel log that indicated any

[OpenWrt-Devel] [PATCH] include: fix kernel download failure with git & local trees

2014-05-06 Thread Mathieu Olivari
When using the options EXTERNAL_KERNEL_TREE or KERNEL_GIT_CLONE_URI, the command "make downloads" fails as it tries to download the kernel tarball despite the option. This doesn't happen during a regular build as in that case, the dependency is conditionned through the LINUX_SITE variable, which is

[OpenWrt-Devel] [PATCH 2/2] ppp: fix o_special option printing

2014-05-06 Thread Nathan Hintz
PPPD crashes (SEGV) when the 'dump' or 'dryrun' options are specified and an option defined internally as "o_special" with an option flag of "OPT_A2STRVAL" is used. The crash occurs because the option value is not saved when the parameter is processed, but is then referenced when printed. Additio

[OpenWrt-Devel] [PATCH 1/2] ppp: fix printing of DNS/WINS addresses

2014-05-06 Thread Nathan Hintz
Signed-off-by: Nathan Hintz --- Re-send of the following: http://patchwork.openwrt.org/patch/3246/ .../ppp/patches/502-fix-ms-dns-and-ms-wins-print.patch | 17 + 1 file changed, 17 insertions(+) create mode 100644 package/network/services/ppp/patches/502-fix-ms-dns-and-ms-wi

Re: [OpenWrt-Devel] [PATCH v3] ppp: add new protocol PPPoSSH.

2014-05-06 Thread Yousong Zhou
Hi, On 24 April 2014 11:23, Yousong Zhou wrote: > This patch adds protocol support for PPP over SSH. The protocol name is > 'pppossh' with the following options. > > - server, required, SSH server name. > - port, SSH server port. > - sshuser, required, SSH login username. > - identity, clien

Re: [OpenWrt-Devel] [PATCH] [apex]: Change Source URL for Apex package

2014-05-06 Thread Florian Fainelli
2014-04-03 18:54 GMT-07:00 Riley Baird (Orthogonal) : > As both of the PKG_SOURCE_URLs within the Apex Makefile appear to be no > longer functional, this patch changes the source URL to the OpenWRT > downloads page. Apologies for resubmitting, but there was a syntax error > in the previous patch (

Re: [OpenWrt-Devel] [PATCH] [packages] exim: new package

2014-05-06 Thread Florian Fainelli
2014-04-05 5:10 GMT-07:00 Adam Nielsen : > This adds support for building the Exim MTA as a package. The standard > options > are configurable through the menuconfig system, with support in place for some > of the more advanced options (currently flagged as BROKEN), should someone > wish > to ad

Re: [OpenWrt-Devel] [PATCH] [rb532] Fix ext4 and squashfs images

2014-05-06 Thread Florian Fainelli
2014-04-15 15:43 GMT-07:00 Roman Yeryomin : > Not sure why but jffs2 images cannot be fixed in the same way as squashfs so > they are still broken (at least for me). > > Signed-off-by: Roman Yeryomin Applied in r40717, thanks! -- Florian ___ openwrt-

Re: [OpenWrt-Devel] Looking for someone with WNR3500L V1

2014-05-06 Thread Owen Kirby
Did a sysupgrade to the latest bcrm47xx trunk images and tried to load the network up with some traffic (connected a few laptops to the LAN ports and ran iperf between each other and the WNDR3700v3) Nothing came up in the kernel log that indicated anything out of the ordinary happening after a few

[OpenWrt-Devel] [PATCH] Fix sysntpd to use multiple servers.

2014-05-06 Thread Ben Kibbey
--- package/utils/busybox/files/sysntpd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/utils/busybox/files/sysntpd b/package/utils/busybox/files/sysntpd index c5c3c8e..cb1d4a7 100755 --- a/package/utils/busybox/files/sysntpd +++ b/package/utils/busybox/files/sysntpd

[OpenWrt-Devel] [PATCH] [packages] input-utils: update to 1.1

2014-05-06 Thread Dirk Neukirchen
- change upstream URL - update to 1.1 release - delete obsolete patches (they are in upstream) patch 001 - fix compile on sys with sh->dash (Debian,Ubuntu) Error: Make.config:1: *** empty variable name. Stop. Reason: echo -e in mk/Autoconf.mk patch 002: - use path of Linux headers from environm

[OpenWrt-Devel] [PATCH] Substituted deprecated -perm +mode with -perm /mode

2014-05-06 Thread Rocco Folino
The find(1) -perm +mode is no longer supported and has been deprecated since 2005. This could resolve #13855 ticket. Signed-off-by: Rocco Folino --- package/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/Makefile b/package/Makefile index 3b4eecd..f2dc10c 10

[OpenWrt-Devel] [PATCH 1/2] kernel/generic: modify mtd related patches for 3.14

2014-05-06 Thread Zhao, Gang
Function register_mtd_parser always returned 0 (at least since v3.3) before being changed to return void in v3.14-rc1~65^2~93 (mtd: make register_mtd_parser return void), so it's not needed to check the return value of this function. Also add __init flag to caller. This fix compile errors in 3.14

[OpenWrt-Devel] [PATCH 2/2] kernel: modify mtd related patches for 3.14

2014-05-06 Thread Zhao, Gang
The change is the same as ("kernel/generic: modify mtd related patches"). Since these files are under files directory, not a files directory of specific kernel version, better to also change them. So it will avoid adding files to future specific files directory (e.g. files-3.14) for this mtd relate

Re: [OpenWrt-Devel] [PATCH] reset ht_capab for each device

2014-05-06 Thread Felix Fietkau
On 2014-05-06 17:19, Reiner Herrmann wrote: > ... or else "option htmode" is added multiple times to > the second and following device sections. > > Signed-off-by: Reiner Herrmann Committed in r40711, thanks. - Felix ___ openwrt-devel mailing list open

[OpenWrt-Devel] [PATCH] reset ht_capab for each device

2014-05-06 Thread Reiner Herrmann
... or else "option htmode" is added multiple times to the second and following device sections. Signed-off-by: Reiner Herrmann --- package/kernel/mac80211/files/lib/wifi/mac80211.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/package/kernel/mac80211/files/lib/wifi/mac80211.sh b/package

Re: [OpenWrt-Devel] Looking for someone with WNR3500L V1

2014-05-06 Thread Rafał Miłecki
On 5 May 2014 19:59, Owen Kirby wrote: > I've got a WNDR3700v3 that I can try your patches on, but it's based on > the BCM4718A1 rather than the BCM4718 in the WNR3500L. Would that be > close enough for you to work with? I'm not sure. I was using bgmac on many devices with following chipsets: 1)