yes. thats because the recovery you are using. and the mount point used in the install script.
I just went through this for these different recoveries on this forrum. some ported some built . any way
you can open the zip file up and make changes to the file
here is the path inside the zip.
\MATA-INF\com\google\android\upadater-script
Change the lines that has this:
Code:
format("ext4", "EMMC", "/dev/block/platform/mtk-msdc.0/by-name/system", "0", "/system");
mount("ext4", "EMMC", "/dev/block/platform/mtk-msdc.0/by-name/system", "/system", "max_batch_time=0,commit=1,data=ordered,barrier=1,errors=panic,nodelalloc");
To this
Code:
format("ext4", "EMMC", "/dev/block/mmcblk0p20", "0", "/system");
mount("ext4", "EMMC", "/dev/block/mmcblk0p20", "/system", "max_batch_time=0,commit=1,data=ordered,barrier=1,errors=panic,nodelalloc");
And then at bottom also change these lines
Code:
package_extract_file("boot.img", "/dev/block/platform/mtk-msdc.0/by-name/boot");
To this
Code:
package_extract_file("boot.img", "/dev/block/mmcblk0p7");
Those changes will make this work in all (5 i think) of the recoveries on this forum.
If that sounds to difficult you could flash the ported 3.1.1 recovery (it is linked in the OP of this thread). That is the one I was using when I made and tested these LM13 port installs.