Re: [OpenWrt-Devel] ARM Kernel crash

2008-07-16 Thread wlanmac
Thanks! actually, that variable was already set. I will enable a few more options. I didn't get an Oops report - at least not out of QEmu or from an remotely attached gdb. On Tue, 2008-07-15 at 12:43 +0200, John Crispin wrote: activate CONFIG_KALLSYMS and then paste the oops dump pls

Re: [OpenWrt-Devel] Gargoyle -- another (new) web interface for OpenWrt Kamikaze

2008-07-16 Thread OutBackDingo
Its funny you all speak about division, being i cant completely functionally use any of them that exists, being x-wrt, gargoyle, or luci so to each there own, there is CoovaAP also which is a diversion gargoyle doesnt even configure WDS from where i can see, looking at Luci next, x-wrt leaves a

Re: [OpenWrt-Devel] Gargoyle -- another (new) web interface for OpenWrt Kamikaze

2008-07-16 Thread Brian J. Murrell
On Wed, 2008-07-16 at 20:59 +0700, OutBackDingo wrote: Its funny you all speak about division, being i cant completely functionally use any of them that exists, being x-wrt, gargoyle, or luci That's exactly my point. _Exactly_. Here we have 3 or 4 (or more) web UIs all going off in different

Re: [OpenWrt-Devel] Gargoyle -- another (new) web interface for OpenWrt Kamikaze

2008-07-16 Thread OutBackDingo
I think you might be reading between the lines here, clarifying my thoughts, diversification is good, controlled collaboration growing from that is even better overall I think its best you take a good look at the BSD arena, there are multiple BSDs all living and playing well, and sharing

[OpenWrt-Devel] [PATCH] PPS-tools

2008-07-16 Thread Frithjof Hammer
This patch updates the package PPS-tools to linuxpps-v5.3.0 I extracted from http://wiki.enneenne.com/index.php/LinuxPPS_support. Signed-off-by: Frithjof Hammer [EMAIL PROTECTED] Index: utils/pps-tools/patches/001-source.patch ===

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread Benoît Ganne
How is it possible to create a crontab entry while creating a package? [...] But I would like to do it at such time that the crontab is already modified on the firmware image? I'm not sure to understand: you just want to add a crontab entry at package installation time, right ? If so, you

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread Jens Nachtigall
Am Mittwoch, 16. Juli 2008 20:47 schrieb Benoît Ganne: How is it possible to create a crontab entry while creating a package? [...] But I would like to do it at such time that the crontab is already modified on the firmware image? I'm not sure to understand: you just want to add a

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread Brian J. Murrell
On Wed, 2008-07-16 at 21:11 +0200, Jens Nachtigall wrote: Interesting, but a bit of a dirty hack for something like cronjobs imho. No, on the contrary. Using published interfaces such as the crontab command to submit cron entries is in fact the official method of adding cron jobs. Hacking

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread Steven Van Ingelgem
Thanks Benoit :-), that helps a lot! 2008/7/16 Benoît Ganne [EMAIL PROTECTED]: How is it possible to create a crontab entry while creating a package? [...] But I would like to do it at such time that the crontab is already modified on the firmware image? I'm not sure to understand: you

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread Harald Schioeberg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 That all said, I can't find the cron package in OpenWRT. Can anyone point me (in the source tree I mean) to it? cron is supplied by the busybox harald -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG

Re: [OpenWrt-Devel] Adding entries to the crontab

2008-07-16 Thread wlanmac
It seems to work well using the crontab command from within your init script - assuming your cron is associated with a service. in start(): (crontab -l 2/dev/null | grep -v $0 echo */10 * * * * $0 checksomething ) | crontab - 2/dev/null in stop(): crontab -l 2/dev/null |