[android-porting] Re: RIL GPRS data channel

2009-07-02 Thread cindy_king_1024
Hi,Nimit Now I can receive the AT command,but what's the matter with the following formations ,thanks ! I/RILC( 681): RIL Daemon version: android reference-ril 1.0 I/RILJ( 741): Connected to 'rild' socket D/RILJ( 741): Radio ON @ init; reset to OFF D/RILJ( 741): []> R

[android-porting] Internet Access on ANDROID

2009-07-02 Thread Vinay R Rao
Hi all, I am working on SMDK2440 board. Android is up and running on the target platform. I am not able to connect to the internet through ANDROID. i have copied the required lib files like libnsl.so, libnss_dns.so, libresolv.so as mentioned in some android mailing list. Can you please tell me the

[android-porting] client server communication between two computers

2009-07-02 Thread sumit
hello all , can any body give me full code of client server communication which capable to communicate between two computers in diff emulator like M1 is first machine(PC) on that E1 (emulator) is running with server and on other M2 machine(PC) on that client running on E2 (emulator) .i wa

[android-porting] Re: init: untracked pid 1070 exited

2009-07-02 Thread Neo
On Jun 30, 2:48 am, Elvis Dowson wrote: > Hi, >       When I try to enable my wifi in the android wifi settings, I get > the following error message: > > init: untracked pid 1070 exited > > How can I find out which process it is? > > Elvis Quite difficult from log but what I did was put some d

[android-porting] Port Android to an M-88 Miphone

2009-07-02 Thread jaguerra777
Some one can help me to port android to mi M-88 Miphone? Thank´s Jaguerra777 --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~-

[android-porting] How firmware update and Application update work through OTA work?

2009-07-02 Thread onceaweek
I'd like to know how to update SDK or Applications through OTA? Does Android support the update mechnism ? If not, an operator or a device manufacturer adds the functionality for software update? I guess 'com.android.updater' package may have something to do with SDK update, but I'm not sure.

[android-porting] Re: error on booting android filesystem through NFS

2009-07-02 Thread Vinay Rao
Hi, Your boot loader bootargs may be wrong check it once. Regards, Vinay R Rao On Thu, Jul 2, 2009 at 7:36 PM, manjunatha wrote: > > Hi > > I am getting following error on mounting android filesystem through > NFS on OMAP board: > > Kernel panic - not syncing: Attempted to kill init! > > I pop

[android-porting] error on booting android filesystem through NFS

2009-07-02 Thread manjunatha
Hi I am getting following error on mounting android filesystem through NFS on OMAP board: Kernel panic - not syncing: Attempted to kill init! I populated the root filesystem (/root-for-nfs) as below: cp out/target/product/generic/root /*/root-for-nfs cp out/target/product/generic/system

[android-porting] Re: where is fdatasync(int) implemented?

2009-07-02 Thread Kenny
Thank you, Mike. You show great skill:) I won't touch Google code here. I just fixed it this way (learn from external/sqlite/dist/sqlite3.c): /* ** Use the fdatasync() API only if the HAVE_FDATASYNC macro is defined. ** Otherwise use fsync() in its place. */ #ifndef HAVE_FDATASYNC # define fdatasy

[android-porting] Re: where is fdatasync(int) implemented?

2009-07-02 Thread Michael Trimarchi
Hi, Kenny wrote: > Yes, it is. The linker "ld" fails to find the symbol fdatasync. How to > get it found? And trick in Android.mk? > Kenny > Add to the bionic SYSCALL.txt and call the python script gensyscall.py. I hope that it fix your issue Michael > On Jul 2, 8:16 pm, Michael Trimarchi

[android-porting] Re: where is fdatasync(int) implemented?

2009-07-02 Thread Kenny
Yes, it is. The linker "ld" fails to find the symbol fdatasync. How to get it found? And trick in Android.mk? Kenny On Jul 2, 8:16 pm, Michael Trimarchi wrote: > Kenny Yu wrote: > > I am porting a C program. Very simple - it refers to a C function > > declared in BIONIC libc: > > > device/bionic

[android-porting] Re: where is fdatasync(int) implemented?

2009-07-02 Thread Michael Trimarchi
Kenny Yu wrote: > I am porting a C program. Very simple - it refers to a C function > declared in BIONIC libc: > > device/bionic/libc/include/unistd.h > at line 142 (CUPCAKE version) as > extern int fdatasync(int); > > Link failure is seen because libc.so doesn't have the implementation: > externa

[android-porting] where is fdatasync(int) implemented?

2009-07-02 Thread Kenny Yu
I am porting a C program. Very simple - it refers to a C function declared in BIONIC libc: device/bionic/libc/include/unistd.h at line 142 (CUPCAKE version) as extern int fdatasync(int); Link failure is seen because libc.so doesn't have the implementation: external/sysstat/sadc.c:901: undefined

[android-porting] Is it possible to specify the target size for the install?

2009-07-02 Thread Bruce
Just a quick question, I have an Asus 1000HE with a 160GB HDD, when I install Android it takes several hours, especially the "resizing the file system" step, is there any way to specify (perhaps in disk_layout.conf?) that I only wanted to use say, the first 16GB, of the target device? --~--~---