[android-porting] D/SntpClient: request time failed: java.net.SocketException: Address family not supported by protocol

2011-09-20 Thread extrapedestrian
I work on Mips Froyo port, time/date is not set automatically from network, I get this log: D/SntpClient: request time failed: java.net.SocketException: Address family not supported by protocol Any hints? -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] onPause getting called on an activity performed in USB port

2011-09-20 Thread Vishwanath Hegde
I have a following scenario. Can somebody explain me how a call comes to onPause in this scenario? It is still more helpful if somebody can comment on whether an onPause is supposed to get called in this scenario. Camera is doing video recording. Insert (or remove if already inserted) a USB

[android-porting] Re: [android-kernel] chmod 777 file not working with init.rc

2011-09-20 Thread jagan
You can't give the permissions directly on android source. We need to give the permissions on init.rc. Better to read the file from system/core/init/readme.txt Regards, Jagan On Tue, Sep 20, 2011 at 9:18 PM, Pratik Prajapati pratik.prajap...@gmail.com wrote: Hi There, I'm setting

[android-porting] usb hub not working on gingerbread kernel-2.6.32

2011-09-20 Thread venkat k raju
Hi all, i am using usb2415 as USB HUB CHIP . how to configure usb hub in android 2.6.32 kernel ? please suggest me ! -- thanksRegards k.v.raju -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] chmod 777 file not working with init.rc

2011-09-20 Thread Pratik Prajapati
Hi There, I'm setting permission to 777 (R+W+E for all) to a script file. But after kernel built and flashed to the system, permission does not get changed as expected. I understand I can give permission in make file while creating filesystem to be flashed on system. But same thing is happening

[android-porting] Re: [android-kernel] chmod 777 file not working with init.rc

2011-09-20 Thread Pratik Prajapati
Hi, I'm doing below things in init.rc only. (1) on device-added-device node path chmod 777 sys fs file name (2) on boot chmod 777 sys fs file name But it does not work. -- Regards, Pratik Prajapati On Tue, Sep 20, 2011 at 8:58 AM, jagan 402ja...@gmail.com wrote: You can't give

[android-porting] Re: [android-kernel] chmod 777 file not working with init.rc

2011-09-20 Thread Ashwin Bihari
Try repeating the command multiple times in init.rc, i.e., chmod 777 sys file name chmod 777 sys file name I've found that doing it at least twice usually makes it work.. -- Ashwin On Tue, Sep 20, 2011 at 12:06 PM, Pratik Prajapati pratik.prajap...@gmail.com wrote: Hi, I'm doing