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

2013-11-22 Thread Bastian Bittorf
* Bastian Bittorf bitt...@bluebottle.com [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:

[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

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

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-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

[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

[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 bitt...@bluebottle.com --- 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

[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 bitt...@bluebottle.com --- 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

[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 bitt...@bluebottle.com --- 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

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 dgo...@allnet.de Nack This was already fixed in r38820.

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

[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 bitt...@bluebottle.com --- 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

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

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf bitt...@bluebottle.com --- 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

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

2013-11-22 Thread Bastian Bittorf
Signed-off-by: Bastian Bittorf bitt...@bluebottle.com --- 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

[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 bitt...@bluebottle.com --- 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

[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 bitt...@bluebottle.com --- 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

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 bitt...@bluebottle.com --- package/base-files/files/sbin/hotplug-call |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff