I will not have time to make any progress today and probably not tomorrow either. A work deadline rained on me this morning and on top of that my son started a fever. I am working from home and taking care of him. Since the tablet once rooted and cleaned will be his birthday present, he may not see the new gadget in the house.
I have Carliv 1.0 for Linux (thanks for the pointer) and I started to look into the differences of the results produced by bcgngm's mtk-tools.
Chainfire's SuperSU is, as far as I know, the only rooting solution from KitKat that survived in Lollipop. so I downloaded v2.49 beta, unpacked it, and started to read and understand what META-INF/com/google/android/update-binary (which is actually a script, not a binary) does. For experienced ROM cooks like you or rrileypm (an opportunity to say thank him for RileyROM, which is the most user-friendly entry point into the world of ROM-cooking I have seen so far), this job is probably easier than to me. I foresee changes to init.rc.
Other than that, the last evening was otherwise busy so I did not advance much in my quest to master MTK Android. I am trying to devise a method to come up with clean piping over the adb that does not require rooting / busybox. "adb shell" converts linefeeds (0x0a) to carriage-return + linefeed (0x0d 0x0a), corrupting the output. There are recipes around to filter with sed or perl, but none of them yields reliable results because there can be a true (0x0d 0x0a) sequence in the dump. I am searching to see if there is a base64 or similar encoder in Android, preferably in the default ROM, to make something like this work:
adb shell "dd if=/dev/block/platform/mtk-msdc.0/by-name/logo | base64" | dd of=/tmp/logo.b64
Comment