|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
i dunno if i would consider this progress :-\
all of the sudden i cant boot into android. It seems that the data.img and system.img no longer mount. grrr this is hard to figure out since i cant adb anymore. Have to just constantly butcher the init to find out where its dying. I guess we can begin to mod the initrd to make this more friendly.. im sure nate is ahead of me and prob has that all written already :-p update: ok looks like android itself (not rootfs) is trying to mount the system and data from nand. since i havent been successful in writing to nand yet, it craps out..
__________________
Last edited by [ACL]; 01-31-2011 at 10:11 AM. |
This post has been thanked 3 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Well... I guess being worked on is progress!
Where can I get the files to compile the drivers? Thanks! |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
the only thing holding me back from commiting them is that i cant verify if i can write to nand yet. I need to know how to disable android from automouting the yaffs partitions.
|
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
Code:
/bin/mount | grep mtd notnand=$? if [ $notnand = "0" ] ; then echo "running from NAND" /bin/mount -t yaffs2 /dev/block/mtdblock2 /system /bin/mount -t yaffs2 /dev/block/mtdblock3 /data fi |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
This actually happens when androuid loads. The console shows yaffs trying to mount block2 and 3. And boom.. death to boot up since it cant find anything. so so close. |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
Could be in the init of the initramfs. What does your command line look like? |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
If you want to get started and testing. You can try to download the hd2-nand.c file from the nand tree. Just remove everything in our msm-nand.c with the stuff from that file. Once you have that you should be where im at. Last edited by [ACL]; 01-31-2011 at 12:44 PM. |
This post has been thanked 2 times. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
Vogue's tinboot has some really awesome changes since wozzer ported it over for us. They now have working data during boot, ADB enabled by initramfs, and lots of other great changes. They use bootenv git for building their initrd which they've changed to lzma instead of gzip: SourceForge - androidhtc/bootenv.git/summary And their tinboot is here: SourceForge - androidhtc/bootenv.git/summary |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
|
|
|
|