คือลงแล้วมันinstall abort ทุกที ซึ่งผมลองไปหาวิธีแก้ในxda แล้ว
แต่ว่าผมอ่านไม่รู้เรื่อง ใครที่เชี่ยวชาญมากๆมาช่วยผมหน่อยครับ = =

ตามนี้เลย

Originally Posted by N00BY0815
OK, sorry for being a noob, but which lines did u replace by
Code:
run_program(“/sbin/busybox”, “mount”, “/system”);
?

This one?
Code:
assert(mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p8”, “/system”));
or a different one?
Just wanna learn from the pros
If you’ve seen the logfile above, says:

Code:
mount: failed to mount /dev/block/mmcblk0p10 at /cache: Device or resource busy
script aborted: assert failed: mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p10”, “/cache”)
Nova kernel updater
That mounting is the cause of status 7 (assert failed: mount)(mmcblk0p10). As per knzo advised regarding mounting, I replaced that line. And It went through.

“system” should be replaced to “cache”. Cause it’s the cache that’s being mounted.

Code:
assert(mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p10”, “/cache”));
to
Code:
run_program(“/sbin/busybox”, “mount”, “/cache”);
Kernel version is Nova v11, Nova Settings is there. CMIIW

Also, Knzo mentioned partitionS
So:
Code:
assert(mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p8”, “/system”));
assert(mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p9”, “/data”));
assert(mount(“ext4”, “EMMC”, “/dev/block/mmcblk0p10”, “/cache”));
to
Code:
run_program(“/sbin/busybox”, “mount”, “/system”);
run_program(“/sbin/busybox”, “mount”, “/data”);
run_program(“/sbin/busybox”, “mount”, “/cache”);
I only replaced “cache mounting” as per error with the new CWM Touch

ลิ้งค์ที่บอกวิธีแก้
http://forum.xda-developers.com/showthread.php?p=22138018&highlight=install+abort#post22138018