[android-porting] Re: Network error eth0 not found

2010-06-13 Thread pramod
Have you enabled the network driver in kernel?? Run the "netcfg" command and see if any of the network interface is available. On Jun 12, 11:04 am, Nilly wrote: > hi All, > > I want to start network on my board. > I am getting and error when i am doing > ifconfig eth0 up > > error: SIOCSIFADDR (N

[android-porting] Re: Network error eth0 not found

2010-06-14 Thread Nilly
Pramod, netcfg is not listing eth0. while booting kernel it is printing... smsc911x: Driver version 2008-10-21. IRQ 179/eth%d: IRQF_DISABLED is not guaranteed on shared IRQs 11c011c smsc911x-mdio: probed eth0: attached PHY driver [Generic PHY] (mii_bus:phy_addr=:01, irq=-1) i2c /dev entr

[android-porting] Re: Network error eth0 not found

2010-06-14 Thread pramod
I think "SMSC LAN911x/LAN921x families embedded ethernet support" (SMSC911X) is the option kernel for your ethernet driver. Looking at your message i think the driver is sharing the IRQ lines. So search in the kernel code and try to disable the other driver which is sharing the IRQ lines with th

[android-porting] Re: Network error eth0 not found

2010-06-14 Thread Srikant
Hi, Try with IRQF_SHARED, this just to see whether if it interrupt problem. - Srikant On Jun 14, 3:59 pm, Nilly wrote: > Pramod, > > netcfg is not listing eth0. > > while booting kernel it is printing... > > smsc911x: Driver version 2008-10-21. > IRQ 179/eth%d: IRQF_DISABLED is not guaranteed o

[android-porting] Re: Network error eth0 not found

2010-06-16 Thread Nilly
Pramod, There is only one file in /driver/net/smsc911x and that is working fine when i am building linux. srikant, I didnt get what you mean by try IRQF_SHARED? sorry as I am new to this i dont have deep knowledge on it. Regards, Nilly On Jun 14, 8:39 pm, Srikant wrote: > Hi, > > Try with IR

[android-porting] Re: Network error eth0 not found

2010-06-17 Thread Srikant
Instead of passing IRQF_DISABLED flag, just use the flag IRQF_SHARED in the request_irq() function of the driver. On Jun 16, 1:50 pm, Nilly wrote: > Pramod, > > There is only one file in /driver/net/smsc911x and that is working > fine when i am building linux. > > srikant, > > I didnt get what y