Re: [OpenWrt-Devel] Q: basefiles: server_check() / start-stop-daemon

2013-11-22 Thread Bastian Bittorf
* Bastian Bittorf [22.11.2013 08:50]: > and often we see an 'error' on log, but the daemon runs fine. > when checking what service_check() does, i can see that it calls: > > start-stop-daemon -K -t -- "/usr/sbin/olsrd" i read my debugging wrong, and it really calls: start-stop-daemon -q -K -t -

[OpenWrt-Devel] failsafe broken with recent trunk

2013-11-22 Thread Bastian Bittorf
with r38885 and r38892 failsafe does not work via button but on serial console with "f + enter". tested with TP-LINK TL-WR1043ND. bye, bastian ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listin

Re: [OpenWrt-Devel] failsafe broken with recent trunk

2013-11-22 Thread John Crispin
On 22/11/13 13:50, Bastian Bittorf wrote: with r38885 and r38892 failsafe does not work via button but on serial console with "f + enter". tested with TP-LINK TL-WR1043ND. bye, bastian ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org http

Re: [OpenWrt-Devel] failsafe broken with recent trunk

2013-11-22 Thread Bastian Bittorf
> was the response time on trac not fast enough for you that you now > mail us your bugs aswell ? :) sorry, did'nt looked on trac - it does not work for me - everything i do there is marked as spam, but nobody cares (?). sorry - bye, bastian ___ openwrt-

[OpenWrt-Devel] [PATCH] allow including FIT kernel image only on device-tree targets

2013-11-22 Thread Daniel Golle
--- config/Config-images.in | 1 + 1 file changed, 1 insertion(+) diff --git a/config/Config-images.in b/config/Config-images.in index a744fc7..194130f 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -184,6 +184,7 @@ menu "Target Images" config TARGET_ROOTF

[OpenWrt-Devel] [PATCH] use kernel 3.12.1 for targets already on 3.12

2013-11-22 Thread Daniel Golle
also add MD5 sum for 3.12.1 --- include/kernel-version.mk | 3 +++ target/linux/mxs/Makefile | 2 +- target/linux/omap/Makefile | 2 +- target/linux/sunxi/Makefile | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/include/kernel-version.mk b/include/kernel-version.mk inde

[OpenWrt-Devel] [PATCH 1/3] base-files: hotplug-call: directly exit, if call is invalid (minor optimization)

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 260be0b..0a7c238 100755 --- a/package/bas

[OpenWrt-Devel] [PATCH 3/3] base-files: hotplug-call: make it more visible, that braces are used for the sources (protection against misbehaving external script, e.g. exit-call) - minor style/cleanup

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 440926e..1121732 100755 --- a/package/base-fi

[OpenWrt-Devel] [PATCH 2/3] base-files: hotplug-call: use shell-feature filename-globbing instead of forking a 'ls'-call (minor optimization)

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 0a7c238..440926e 100755 --- a/package/base-files/

Re: [OpenWrt-Devel] [PATCH] kernel/modules: set DM_SWITCH=n in kmod-dm

2013-11-22 Thread Hauke Mehrtens
On 11/22/2013 04:41 AM, Daniel Golle wrote: > Kconfig asks for > Switch target support (EXPERIMENTAL) (DM_SWITCH) [N/m/?] (NEW) > and waits for user input which breaks automated builds when using > kernel 3.12. > > Signed-off-by: Daniel Golle Nack This was already fixed in r38820. https://dev

Re: [OpenWrt-Devel] [PATCH 1/3] base-files: hotplug-call: directly exit, if call is invalid (minor optimization)

2013-11-22 Thread Bastian Bittorf
new: > +[ -n "$1" -a -d "/etc/hotplug.d/$1" ] && exit sorry, changed the logic here: dont apply, will send a new patch old: > -[ \! -z "$1" -a -d /etc/hotplug.d/$1 ] && { ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openw

[OpenWrt-Devel] [PATCH 1/5] base-files: hotplug: minor optimization: directly exit, if call is unneeded

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 260be0b..5d22bb4 100755 --- a/package/base-file

[OpenWrt-Devel] [PATCH 2/5] base-files: hotplug: indentation

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 5d22bb4..fb96cd0 100755 --- a/package/base-fi

[OpenWrt-Devel] [PATCH 3/5] base-files: hotplug: updated year

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index fb96cd0..2887869 100755 --- a/package/base-files/

[OpenWrt-Devel] [PATCH 5/5] base-files: hotplug-call: minor cleanup: make it more visible, that braces are used for sourcing (protection against misbehaving external script, e.g. exit-call)

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index c848701..6050180 100755 --- a/package/base-fi

[OpenWrt-Devel] [PATCH 4/5] base-files: hotplug-call: minor optimization: use shell-feature filename-globbing instead of forking a 'ls'-call

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf --- package/base-files/files/sbin/hotplug-call |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/base-files/files/sbin/hotplug-call b/package/base-files/files/sbin/hotplug-call index 2887869..c848701 100755 --- a/package/base-files/

Re: [OpenWrt-Devel] [PATCH 5/5] base-files: hotplug-call: minor cleanup: make it more visible, that braces are used for sourcing (protection against misbehaving external script, e.g. exit-call)

2013-11-22 Thread Yousong Zhou
Hi, That is a really long Subject line I guess. On Fri, Nov 22, 2013 at 07:57:21PM +0100, Bastian Bittorf wrote: > > Signed-off-by: Bastian Bittorf > --- > package/base-files/files/sbin/hotplug-call |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/package/bas