Re: [OpenWrt-Devel] Etrax support

2008-08-04 Thread Hinko Kocevar
MichelinoK wrote: Is there a way to have a more verbose boot (to see where it hangs) ? Run sysinit scripts in /etc/inittab with '#!/bin/sh -x' or use strace to start the script. It might help if strace and/or init are both statically linked. HTH, Hinko -- ČETRTA POT, d.o.o., Kranj

Re: [OpenWrt-Devel] Etrax support

2008-08-04 Thread MichelinoK
Hinko Kocevar [EMAIL PROTECTED] ha scritto nel messaggio news:[EMAIL PROTECTED] MichelinoK wrote: Is there a way to have a more verbose boot (to see where it hangs) ? Run sysinit scripts in /etc/inittab with '#!/bin/sh -x' or use strace to start the script. It might help if strace and/or

Re: [OpenWrt-Devel] Etrax support

2008-08-04 Thread Claudio
2008/8/4, Hinko Kocevar [EMAIL PROTECTED]: MichelinoK wrote: Is there a way to have a more verbose boot (to see where it hangs) ? Run sysinit scripts in /etc/inittab with '#!/bin/sh -x' or use strace to start the script. It might help if strace and/or init are both statically linked. How

[OpenWrt-Devel] how to briding lan and wan

2008-08-04 Thread Gary Li
Hi all, When I try to modify configuration to support brige in the etc/config/netwok. And execute network restart. I got a error: Interface type bridge not supported. Anyone know how to do that? Thanks, Best regards, Gary ___

Re: [OpenWrt-Devel] Etrax support

2008-08-04 Thread Hinko Kocevar
MichelinoK wrote: Hinko Kocevar [EMAIL PROTECTED] ha scritto nel messaggio news:[EMAIL PROTECTED] MichelinoK wrote: Is there a way to have a more verbose boot (to see where it hangs) ? Run sysinit scripts in /etc/inittab with '#!/bin/sh -x' or use strace to start the script. It might

Re: [OpenWrt-Devel] how to briding lan and wan

2008-08-04 Thread Karthik Venkateswaran
Can you cut and paste your /etc/config/network and ifconfig to give more clarity. Cheers, Karthik Venkateswaran Gary Li [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 08/04/2008 05:11 PM Please respond to OpenWrt Development List openwrt-devel@lists.openwrt.org To

Re: [OpenWrt-Devel] Etrax support

2008-08-04 Thread Claudio
2008/8/4, Hinko Kocevar [EMAIL PROTECTED]: MichelinoK wrote: Hinko Kocevar [EMAIL PROTECTED] ha scritto nel messaggio news:[EMAIL PROTECTED] MichelinoK wrote: Is there a way to have a more verbose boot (to see where it hangs) ? Run sysinit scripts in /etc/inittab with '#!/bin/sh -x' or use

Re: [OpenWrt-Devel] [PATCH] Allow use of parameters for modules in function autoload

2008-08-04 Thread Sergey Vlasov
On Mon, Aug 04, 2008 at 06:09:36PM +0200, Frédéric Moulins wrote: Hello, maybe the following patch will interest you : http://lists.openwrt.org/pipermail/openwrt-devel/2008-June/002609.html It allows to configure kernel modules parameters from uci config files. Interesting. But is it

Re: [OpenWrt-Devel] how to briding lan and wan

2008-08-04 Thread Gary Li
Hi Karthik, I just try to change lan option proto. The conf is as below: config interface loopback option ifname lo option protostatic option ipaddr 127.0.0.1 option netmask 255.0.0.0 config interface lan option ifname eth0

Re: [OpenWrt-Devel] how to briding lan and wan

2008-08-04 Thread Karthik Venkateswaran
Gary, After analyzing the config.sh from /lib/network (for Kamikaze 7.09: The bridge is only supported as interface type. option type {bridge} option proto{static, dhcp} If you are interested in bridging your lan and wan interface you could have more success adding it as

Re: [OpenWrt-Devel] how to briding lan and wan

2008-08-04 Thread Gary Li
Karthik, Thanks very much! Best Regards, Gary _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karthik Venkateswaran Sent: Tuesday, August 05, 2008 12:04 PM To: OpenWrt Development List Subject: Re: [OpenWrt-Devel] how to briding lan and wan Gary, After