[android-porting] Booting Android from nand with bootimages

2013-09-24 Thread bill_tn
I am trying to add recovery system in a new Android board. I was able to generate recovery.img, boot.img, ... Since we are using nand memory, my question is is it possible to boot android images (boot.img,...) from nand. I found booti uboot command and I think it is used only with mmc flash.

[android-porting] Booting Android from NAND

2010-05-07 Thread hadhami riahi
Hello, I'm porting Android on imx51 target.I was able to boot it from TFTP/ NFS servers and from a SD card but I'm facing problems while trying to boot from internal NAND. I've created a jffs2 for the file system My u-boot commands are: bootcmd_nand=nand unlock;nand read 0x9080 0x70

Re: [android-porting] Booting Android from NAND

2010-05-07 Thread Ashwin Bihari
Run logcat to see what's happening with Android which is causing this..without that information, it's hard to debug.. Regards -- Ashwin On Fri, May 7, 2010 at 6:20 AM, hadhami riahi riahi.hadh...@gmail.com wrote: Hello, I'm porting Android on imx51 target.I was able to boot it from TFTP/

Re: [android-porting] Booting Android from NAND

2010-05-07 Thread hadhami riahi
When I boot from TFTP/NFS servers,I can access the Android shell! Someone know why I can't when booting from nand? and is there another way to acces the android shell? 2010/5/7 hadhami riahi riahi.hadh...@gmail.com Hi Ashwin, Thanks for reply. I tried to acces Android's shell through adb :

Re: [android-porting] Booting Android from NAND

2010-05-07 Thread hadhami riahi
Sorry for previous post,in fact we can acces android 's shell via serial port. the log is: D/AndroidRuntime( 1823): AndroidRuntime START D/AndroidRuntime( 1823): CheckJNI is ON D/dalvikvm( 1823): DexOpt: incorrect opt magic number (0xff ff ff ff) D/dalvikvm( 1823): Stale deps in cache file;

[android-porting] Booting Android from NAND

2010-04-28 Thread hadhami riahi
Hello, I'm trying to boot Android from NAND. I was able to write the kernel to NAND but I don't know how to write the Android file system to NAND! I tried to put it in a SD card and then fatload it but it doesn't seem to work! Can anyone please help? Thanks -- unsubscribe:

Re: [android-porting] Booting Android from NAND

2010-04-28 Thread Deva R
hi, how about doiong fatload to ram, and do nand.write?? check if below steps help. http://omappedia.org/wiki/Android_Getting_Started#Other_ways_to_flash_Android http://omappedia.org/wiki/3630SDP_Flashing#FileSystem_flashing (for poky though) http://elinux.org/BeagleBoardNAND#File_system On

Re: [android-porting] Booting Android from NAND

2010-04-28 Thread xingchao wang
hi , generally speaking there're BSP specific tools to flash Filesystem images to NAND. You have no such tools at hand? 2010/4/28 hadhami riahi riahi.hadh...@gmail.com Hello, I'm trying to boot Android from NAND. I was able to write the kernel to NAND but I don't know how to write the

Re: [android-porting] Booting Android from NAND

2010-04-28 Thread Michael Trimarchi
xingchao wang wrote: hi , generally speaking there're BSP specific tools to flash Filesystem images to NAND. You have no such tools at hand? Boot from ramdisk, mount the partition and using the tar command to unzip the filesystem for example, or create the jffs2 file and using uboot for