New: XDA launches forum for app developers. Discuss coding, tools, marketing, and more.
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
im0rtalz
Old
#11  
im0rtalz's Avatar
Senior Member
Thanks Meter 505
Posts: 819
Join Date: Mar 2010
Location: Boston
Quote:
Originally Posted by Nabbu View Post
I've followed the instructions down to the letter and it still won't flash. It says installation aborted: getpropgetpropgetpropgetprop or something along those lines.
This isn't my first ICS flash, I've done it dozens of times, but this problem has stumped me.

I'm using the direct boot CWM5 kernel that was described in the instructions: http://e4gtcm.blogspot.com/p/tools.html

I'm currently running El29 Blazer 4.0.
This error just means that the assert script failed to verify your phone device id. It looks for the build.prop to identify your phone so that it wont be installed on the wrong phone. A simple way to get stock build.prop use one of sfhub's odin one click. Once done let it boot up and then odin the cwm5 kernel either thru odin or mobile odin. Wipe/data and app and proceed to install. Also no need to flash Calkulin's format all, the install script wipe's system before installing. You could also try just flashing a gingerbread rom, that might restore the proper build.prop also and you would be able to proceed from that point on. Good luck and just remember all wiping and flashing must be done on a el26 or el29 based recovery.

Code:
assert(getprop("ro.product.device") == "epic4gtouch" || getprop("ro.build.product") == "epic4gtouch" || 
       getprop("ro.product.device") == "GT-I9100" || getprop("ro.build.product") == "GT-I9100" || 
       getprop("ro.product.device") == "GT-I9100M" || getprop("ro.build.product") == "GT-I9100M" || 
       getprop("ro.product.device") == "GT-I9100T" || getprop("ro.build.product") == "GT-I9100T" || 
       getprop("ro.product.device") == "SPH-D710" || getprop("ro.build.product") == "SPH-D710");
package_extract_file("system/bin/backuptool.sh", "/tmp/backuptool.sh");
package_extract_file("system/bin/backuptool.functions", "/tmp/backuptool.functions");
set_perm(0, 0, 0777, "/tmp/backuptool.sh");
set_perm(0, 0, 0644, "/tmp/backuptool.functions");
run_program("/tmp/backuptool.sh", "backup");
show_progress(0.500000, 0);
unmount("/system");
format("ext4", "EMMC", "/dev/block/mmcblk0p9", "0");
mount("ext4", "EMMC", "/dev/block/mmcblk0p9", "/system");
The Following User Says Thank You to im0rtalz For This Useful Post: [ Click to Expand ]
 
Nabbu
Old
#12  
Nabbu's Avatar
Senior Member - OP
Thanks Meter 31
Posts: 170
Join Date: Mar 2012
Location: Grand Prairie

 
DONATE TO ME
Quote:
Originally Posted by rwright64 View Post
That's the right one. Weird.
did you try going back to stock GB?

Sent from my SPH-D710 using xda premium

Yeah I used sfhub's one-click EL29 and then flashed the recovery with Odin in the PDA slot. It still doesn't work.
I know it isn't something I've done because I just flashed alpha 4 not too long ago and then oc'ed back to EL29.
Insanity: doing the same thing over and over again and expecting different results.
-Albert Einstein
 
Nabbu
Old
#13  
Nabbu's Avatar
Senior Member - OP
Thanks Meter 31
Posts: 170
Join Date: Mar 2012
Location: Grand Prairie

 
DONATE TO ME
Quote:
Originally Posted by im0rtalz View Post
This error just means that the assert script failed to verify your phone device id. It looks for the build.prop to identify your phone so that it wont be installed on the wrong phone. A simple way to get stock build.prop use one of sfhub's odin one click. Once done let it boot up and then odin the cwm5 kernel either thru odin or mobile odin. Wipe/data and app and proceed to install. Also no need to flash Calkulin's format all, the install script wipe's system before installing. You could also try just flashing a gingerbread rom, that might restore the proper build.prop also and you would be able to proceed from that point on. Good luck and just remember all wiping and flashing must be done on a el26 or el29 based recovery.

Code:
assert(getprop("ro.product.device") == "epic4gtouch" || getprop("ro.build.product") == "epic4gtouch" || 
       getprop("ro.product.device") == "GT-I9100" || getprop("ro.build.product") == "GT-I9100" || 
       getprop("ro.product.device") == "GT-I9100M" || getprop("ro.build.product") == "GT-I9100M" || 
       getprop("ro.product.device") == "GT-I9100T" || getprop("ro.build.product") == "GT-I9100T" || 
       getprop("ro.product.device") == "SPH-D710" || getprop("ro.build.product") == "SPH-D710");
package_extract_file("system/bin/backuptool.sh", "/tmp/backuptool.sh");
package_extract_file("system/bin/backuptool.functions", "/tmp/backuptool.functions");
set_perm(0, 0, 0777, "/tmp/backuptool.sh");
set_perm(0, 0, 0644, "/tmp/backuptool.functions");
run_program("/tmp/backuptool.sh", "backup");
show_progress(0.500000, 0);
unmount("/system");
format("ext4", "EMMC", "/dev/block/mmcblk0p9", "0");
mount("ext4", "EMMC", "/dev/block/mmcblk0p9", "/system");

I've done the one-click and then flashed the CWM5 and then tried flashing alpha5 through it and it failed. Just fyi this was before I made this thread.
I can flash EL29 roms easily but I'm not too sure about the build.prop condition on my phone other then it's not allowing me to flash ICS.
Should I be using the "directboot" CWM5 that the OP said to use or another one like EL26 Rogue repack?
Insanity: doing the same thing over and over again and expecting different results.
-Albert Einstein
 
Nabbu
Old
#14  
Nabbu's Avatar
Senior Member - OP
Thanks Meter 31
Posts: 170
Join Date: Mar 2012
Location: Grand Prairie

 
DONATE TO ME
I just found out what is the issue. The OP didn't specify that it won't flash unless using the EL26 Kernel with CWM5. I was using EL29 kernel with CMW5. It flashed successfully. I really appreciate your valiant effort! Seriously you saved me. I thought I had a "dead" build.prop or something. lol ^_^
Insanity: doing the same thing over and over again and expecting different results.
-Albert Einstein
 
im0rtalz
Old
#15  
im0rtalz's Avatar
Senior Member
Thanks Meter 505
Posts: 819
Join Date: Mar 2010
Location: Boston
Glad you got it working!
The Following User Says Thank You to im0rtalz For This Useful Post: [ Click to Expand ]
 
Nabbu
Old
#16  
Nabbu's Avatar
Senior Member - OP
Thanks Meter 31
Posts: 170
Join Date: Mar 2012
Location: Grand Prairie

 
DONATE TO ME
I appreciate it! I got to remember this next time.

Sent from my SPH-D710 using xda premium
Insanity: doing the same thing over and over again and expecting different results.
-Albert Einstein
 
darwin2286
Old
#17  
Junior Member
Thanks Meter 0
Posts: 1
Join Date: Jun 2012
Quote:
Originally Posted by Nabbu View Post
I just found out what is the issue. The OP didn't specify that it won't flash unless using the EL26 Kernel with CWM5. I was using EL29 kernel with CMW5. It flashed successfully. I really appreciate your valiant effort! Seriously you saved me. I thought I had a "dead" build.prop or something. lol ^_^
Hi I encountered the same errors you have.. can you please post a guide and alos download link regarding the one click and CWM5 PLEASE do help...

Thank you and MORE POWER!!!

btw.. Im new in flashing roms... I just followed tuts around the net then errors came BOOM!
 
jamcar
Old
(Last edited by jamcar; 29th June 2012 at 10:51 PM.)
#18  
jamcar's Avatar
Senior Member
Thanks Meter 329
Posts: 1,046
Join Date: Aug 2010
Location: Virginia Beach
I also have this problem but mines only on aosp Rom and I'm using el26



EDIT: douh the error is caused by incompatible build.prop (s)
Sent from my SPH-D710 using xda app-developers app

check me on twitter jamcarXDA
Remember if i helped you then hit "Thanks"