[OpenWrt-Devel] lantiq vdsl2

2014-09-14 Thread John Crispin
Hi, i updated the vdsl driver after the 904 crowd reported the new driver works. now i am getting reports fromt he 8970 users that the new driver fails to enter showtime. can someone who has a vdsl line please very the functionality ? otherwise we will revert back to the previous driver revision.

[OpenWrt-Devel] [PATCH] [package] iproute2: update from v3.15.0 to v3.16.0

2014-09-14 Thread Russell Senior
Signed-off-by: Russell Senior --- package/network/utils/iproute2/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/network/utils/iproute2/Makefile b/package/network/utils/iproute2/Makefile index fc47159..ee4cd65 100644 --- a/package/network/utils/iproute2

Re: [OpenWrt-Devel] mpd breaks openwrt compilation

2014-09-14 Thread Ernesto
Hi Jiří, you were right, I was missing gettext. Such a rookie mistake. Thanks!! El 14/09/2014 05:25, Jiří Šlachta escribió: Hello Ernesto, I suppose you are missing some dependencies. According to your output, it seems that you might be missing the GNU gettext library. If you are using Debia

Re: [OpenWrt-Devel] [PATCH] base-files: procd initscripts restarton reload

2014-09-14 Thread Tristan Plumb
> On 14/09/2014 17:37, Baptiste Jonglez wrote: > > On Sun, Sep 14, 2014 at 08:14:11AM -0400, Tristan Plumb wrote: > >> Currently procd enabled initscripts will restart on reload when > >> the command line changes, which works for many packages, but not > >> anything that keeps its configuration in

Re: [OpenWrt-Devel] Build ipk and make autostart?

2014-09-14 Thread Ted Hess
The main source of your problem is the first line of your init script starts with: #!/bin/ash instead of #!/bin/sh The OpenWrt build script that process the start/stop items in /etc/init.d is using: grep '#!/bin/sh /etc/rc.common' to determine the need to create the initial rc.d links. HTH

[OpenWrt-Devel] Config.in: why the occasional use of "select" instead of "depends"?

2014-09-14 Thread Robert P. J. Day
more of my annoying pedantry surfacing, but i'm puzzled as to the occasional use of "select" in some Config.in files. case in point -- this in "toolchain/eglibc/config/Config.in": ... snip ... config EGLIBC_OPTION_EGLIBC_CRYPT bool "Encryption library" default y help

Re: [OpenWrt-Devel] [PATCH] base-files: procd initscripts restart on reload

2014-09-14 Thread John Crispin
On 14/09/2014 17:37, Baptiste Jonglez wrote: > On Sun, Sep 14, 2014 at 08:14:11AM -0400, Tristan Plumb wrote: >> Currently procd enabled initscripts will restart on reload when >> the command line changes, which works for many packages, but not >> anything that keeps its configuration in a file,

Re: [OpenWrt-Devel] what's the rationale for mixed quotes in Config.in help?

2014-09-14 Thread Robert P. J. Day
On Sun, 14 Sep 2014, Stefan Monnier wrote: > > This option group includes the `libanl' library which > > > > Back before XFree86 consolidated misc-fixed and other such fonts to > cover (a small subset of) Unicode, these two chars where ty

Re: [OpenWrt-Devel] what's the rationale for mixed quotes in Config.in help?

2014-09-14 Thread Stefan Monnier
> This option group includes the `libanl' library which > Back before XFree86 consolidated misc-fixed and other such fonts to cover (a small subset of) Unicode, these two chars where typically rendered under X11 as symmetric quotes (the '

[OpenWrt-Devel] rtl8211cl drive can support?

2014-09-14 Thread ql li
Some HG255D models with rtl8211cl chip can support rtl8211cl Gigabit ports? ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] base-files: procd initscripts restart on reload

2014-09-14 Thread Tristan Plumb
In-Reply-To=<20140914153745.GA1251%40illyse.org> Message-Id: <257d53.2b072c7b.fqsi...@tumtum.plumbweb.net> Date: Sun, 14 Sep 2014 12:02:02 -0400 User-Agent: mx Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Baptiste Jonglez wrote: >On Sun, Sep 14, 2014 at 08:14:11AM -0400,

Re: [OpenWrt-Devel] [PATCH] base-files: procd initscripts restart on reload

2014-09-14 Thread Baptiste Jonglez
On Sun, Sep 14, 2014 at 08:14:11AM -0400, Tristan Plumb wrote: > Currently procd enabled initscripts will restart on reload when the command > line changes, which works for many packages, but not anything that keeps its > configuration in a file, like dnsmasq. Wouldn't it be better to check whethe

[OpenWrt-Devel] Support for Ubnt UniFi Outdoor Plus

2014-09-14 Thread Birger Brunswiek
Hi List, I applied some patches I found in this list to my checkout to get OpenWRT running on my Ubnt UniFi Outdoor Plus (OD+). I was wondering if others working on this unit have seen problems with its wireless range. Mine cannot hear anything that's more than 5m away. Signals are shown to be very

[OpenWrt-Devel] any reason why Makefile for mtd-utils doesn't set PKG_MIRROR_MD5SUM?

2014-09-14 Thread Robert P. J. Day
i was tracing down why running: $ make V=s tools/download insisted on doing a git checkout for the mtd-utils source, and refused to ever check either my local mirror or mirror2.openwrt.org, and i think i figured out that it's because the Makefile doesn't set the variable PKG_MIRROR_MD5SUM, i

[OpenWrt-Devel] [PATCH] base-files: procd initscripts restart on reload

2014-09-14 Thread Tristan Plumb
Currently procd enabled initscripts will restart on reload when the command line changes, which works for many packages, but not anything that keeps its configuration in a file, like dnsmasq. Signed-off-by: Tristan Plumb --- package/base-files/files/etc/rc.common | 2 +- 1 file changed, 1 insert

[OpenWrt-Devel] what's the rationale for mixed quotes in Config.in help?

2014-09-14 Thread Robert P. J. Day
if i wanted to add some help info to some Config.in entries, what's the deal with the strange mixture of back quotes and single quotes around some names? for example, in toolchain/eglibc/config/Config.in: ... snip ... select EGLIBC_OPTION_EGLIBC_INET help This option

Re: [OpenWrt-Devel] mpd breaks openwrt compilation

2014-09-14 Thread Jiří Šlachta
Hello Ernesto, I suppose you are missing some dependencies. According to your output, it seems that you might be missing the GNU gettext library. If you are using Debian/Ubuntu, it is enough to call: aptitude install gettext or apt-get install gettext I would also recommend a