Quote:
Originally Posted by natemcnutty
I really like the idea of symlinking it. I won't get to play with this at all really tonight, but tomorrow I only work a half day, so I will have a bit more time to play with this. Also, there are a few settings in sysinit.rc that I am curious about, but maybe we can save that for a later time
Edit: An example of what I mean is, I see we commented out the portions dealing with /cache. For educational value, I'm curious why we would remove that.
|
Ahh yes. We commented out /cache since it requires a partition we dont have.
I guess normal android devices have a partition on nand just for this .
Code:
#mount yaffs2 mtd@cache /cache nosuid nodev
Also i commented it out since dzo apparently does it on the initrd.
Code:
mkdir -p -m 0777 /data/tmpcache
ln -s /data/tmpcache /cache
I guess the above should be moved out of initrd and moved into android to comply with future builds.. Good call.. must add it to the task list..