Quote:
Originally Posted by Lmiller1708
As ACL stated there will be something tonight.
I have only used Task29 once and it did not fix anything... So I will not use it again. Also if you format your card just once that should be good enough.
Biggest thing is that you have you are using the correct package.
Meaning the androidupdate.tar/tgz and the NBH (what you flash) come from the same place (Nate, ACL, or myself).
My androidupdate.tar had a bunch of apks added to the data/app folder, this is how the cooks will be doing it also. (For the most part)...
ACL is working on the recovery to replace the replimenu! It should be great!
@ Nate, here is my latest MTDParts:
Code:
mtdparts=msm_nand:0x400000@0x4000000(boot),0x800000@0x4400000(recovery),0x8C00000@0x4C00000(system),0x10800000@0xD800000(userdata),0x2000000@0x1E000000(cache)
|
I guess I'll wait until you guys release whatever you are working on. I have a ton of changes that I need to make, but I don't want to overwrite any work
Just a short list of things I noticed:
1) In sysinit.rc, we changed netd from /bin/netd to /system/bin/netd. /bin/netd was a script that we may need to run:
Code:
#!/bin/sh
modprobe ipt_MASQUERADE
modprobe xt_state
modprobe xt_multiport
modprobe iptable_filter
modprobe iptable_nat
/system/bin/netd
2) In initrd, there were no adverse reactions to adding ueventd to /sbin, adding ueventd.rc to root, and changing out init.android for the one from our rootfs. I think it might be a good idea to use an init.android that we know the origin of.
3) I discovered that the qwerty.kcm.bin actually just pointed to microp-keypad.kcm.bin and qwerty.kl pointed to raph_navi_pad.kl. We can just copy the appropriate kl over as qwerty.kl to fix it. I fixed that code in my install-seq.sh
4) I was able to successfully format recovery and mount it and all that using this mtdparts:
Code:
mtdparts=msm_nand:0x20000000@0x0(nand),0x800000@0x8000000(recovery),0x0A000000@0x8800000(system),0xB800000@0x12800000(userdata),0x2000000@0x1E000000(cache)
5) I also made a bunch of changes to create our own installer replacing the replimenu, but I'll see what you guys have first