Quote:
Originally Posted by natemcnutty
I also have no data on either FRX04 or FRX05. I've been trying different things with no luck. I had originally tried merging the changes from rootfs directly into initrd and branching things that needed to be mounted to /data. It boots up nice and fast, but it never gets past the animation screen. That animation will play until the battery dies...
So, back to where we are at present, there are a few things that I've noticed that I'd like to clean up.
First, we are still doing the mknod stuff for camera with systinit.rc that should be removed. We are now doing that through MAKEDEVS as it never worked through sysinit.rc
Second, we still do not have /system/bin/su. We used to mount --bind from /bin/su. If we want to do something similar, we will need to copy /bin/su from rootfs into data and bind mount or ln from there.
Finally, we are missing the qwerty keypad and layout files. We just need to copy those from rootfs into the androidupdate:
/system/etc/keymaps/qwerty.kcm.bin
/system/etc/keymaps/qwerty.kl
I'm still working on the modules thing. I thought I had something, but it isn't working for me right now
|
Yup i noticed your commit about the MKdevs (Thanks good call). I think i will make a new project so we can keep track of these files we need. sysinit.rc is the heart and soul of the boot process so it needs to be on git.
system should have its own su. This way we dont need to link anything from data. Thats what all these roots do anyways, just look at the real root for nexus one
Code:
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
rm /system/xbin/su
rm /system/bin/su
cat /superboot/su>/system/xbin/su
chmod 4755 /system/xbin/su
cat /superboot/Superuser.apk>/system/app/Superuser.apk
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system
This is a simple fix we can actually do over adb or via recovery (whenever i finish lol ).
fu8k the querty.. ill look into that.. Sucks you still have no data. No luck enabling wifi and trying to telnet or something? lets get creative :-p