BuggerZ
Well-known member
Re: [ROM][WIP]CM9.0 RC0-BobZ
BobZhome: The asserts in your updater-script are failing in Drew's Cannibal recovery for VM670. It was happening to TDM as well, and he fixed it (and so can you) by changing his asserts to the following:
Thanks!
BobZhome: The asserts in your updater-script are failing in Drew's Cannibal recovery for VM670. It was happening to TDM as well, and he fixed it (and so can you) by changing his asserts to the following:
Code:
assert(getprop("ro.product.device") == "thunderc" || getprop("ro.build.product") == "thunderc" ||
getprop("ro.product.device") == "VM670" || getprop("ro.build.product") == "VM670" ||
getprop("ro.product.device") == "thunderc_VM670" || getprop("ro.build.product") == "thunderc_VM670");
Thanks!