hi everyone..
While installing custom rom on my WT19i today, I am getting following error message. I've installed custom roms hundreds of times but for the first time got this problem....
assert failed: getprop("ro.product.device") == "WT19i" ||
getprop("ro.build.product") == "WT19i"
E:Error in /sdcard/iuiandroid_WT19i-2.7.13.zip
(status 7)
In my view, build.prop is missing from my phone. Can anyone provide me with one or if there is another problem can provide a solution.
Thanks
c4capricorn said:
hi everyone..
While installing custom rom on my WT19i today, I am getting following error message. I've installed custom roms hundreds of times but for the first time got this problem....
assert failed: getprop("ro.product.device") == "WT19i" ||
getprop("ro.build.product") == "WT19i"
E:Error in /sdcard/iuiandroid_WT19i-2.7.13.zip
(status 7)
In my view, build.prop is missing from my phone. Can anyone provide me with one or if there is another problem can provide a solution.
Thanks
Click to expand...
Click to collapse
extract the rom archive
open the updater script in meta-inf folder
use notepad++
delete 1st 6 lines. save it.
then repack the rom and flash it
sandy7 said:
extract the rom archive
open the updater script in meta-inf folder
use notepad++
delete 1st 6 lines. save it.
then repack the rom and flash it
Click to expand...
Click to collapse
assert(getprop("ro.product.device") == "WT19i" ||
getprop("ro.build.product") == "WT19i");
show_progress(0.500000, 0);
ui_print("Formatting system...");
unmount("/system");
format("yaffs2", "MTD", "system", "0");
these are the 1st 6 lines...delete them??
Yep, delete them
Sent from my MANGO using Tapatalk2
c4capricorn said:
assert(getprop("ro.product.device") == "WT19i" ||
getprop("ro.build.product") == "WT19i");
show_progress(0.500000, 0);
ui_print("Formatting system...");
unmount("/system");
format("yaffs2", "MTD", "system", "0");
these are the 1st 6 lines...delete them??
Click to expand...
Click to collapse
yes delete them..repack the zip and flash them..
It's so funny to see smiles in the lines LOL
Sent from my SK17i using xda app-developers app
Thanks everyone for your help....but the problem is still unresolved...i deleted the lines and repacked the rom.. now when i m trying to install it, it just says intstallation aborted after 2-3 seconds..no error codes or anything...
c4capricorn said:
Thanks everyone for your help....but the problem is still unresolved...i deleted the lines and repacked the rom.. now when i m trying to install it, it just says intstallation aborted after 2-3 seconds..no error codes or anything...
Click to expand...
Click to collapse
Unpack the rom again, open the updater-script and delete only the first 3 lines:
assert(getprop("ro.product.device") == "WT19i" ||
getprop("ro.build.product") == "WT19i");
show_progress(0.500000, 0);
Click to expand...
Click to collapse
and it should work. Because otherwise the command to format system isn't in the script
Related
Hi,
I just tried to install this rom on my i9100p (the one with NFC) but failed the initial test... looks like it can be installed only on plain 9100, 9100M and T but not P... why is that? i've read that apart from the NFC it's just the same (in fact i had no problem installing CWM and after that when the phone boots it says i9100)...
i tried to search for the piece of code that it show on the screen as an error, but unfortunately I couldn't find where it is... the error is:
assert failed: getprop("ro.product.device") == "galaxys2" || getprop("ro.build.product") == "galaxys2" || getprop("ro.product.device") == "i9100" || getprop("ro.build.product") == "i9100" || getprop("ro.product.device") == "i9100M" || getprop("ro.build.product") == "i9100M" || getprop("ro.product.device") == "i9100T" || getprop("ro.build.product") == "i9100T"
so it should be matter of adding a couple ORs and voila... or maybe is there a way to change my model name somewhere?
Mmm some info. here, maybe help http://forum.xda-developers.com/showthread.php?t=1465816
GaboWinter said:
Mmm some info. here, maybe help http://forum.xda-developers.com/showthread.php?t=1465816
Click to expand...
Click to collapse
wel thank you, it did help, cause i understood that i had to modify the updater-script!
but now i get another error it just says error in .zip and (status 6), before it was status 7...
but i'm not really sure if i'm doing it correctly... when i'm in recovery mode, i go to install zip from sdcard->choose zip from sdcard and then i choose update-cm-9...zip
instructions only say "flash cm9"...
i have rooted the phone with CWS and nothing else...
Hi guys! First of all, I just wanna say I'm a complete newbie in ROM Developement...
Today I ported a ROM based in this, and when I'm trying to install it by CWM, it gives me this error:
-- Installing: /sdcard/AOSPLite.zip
Finding update package...
Opening update package...
Installing update...
assert failed: !less_than_int(1334724946, getprop("ro.build.date.utc"))
E:Error in /sdcard/AOSPLite.zip (Status 7)
Installation aborted.
PS: I already read the FAQ in the link, but I think my build.prop is right...
Link: http://pastebin.com/WRtu7zeC
PSS: I have SE Live with Walkman(WT19i) with unlocked bootloader.
Wait, why is your flashable-zip checking the time information build.prop anyway?
Someguyfromhell said:
Wait, why is your flashable-zip checking the time information build.prop anyway?
Click to expand...
Click to collapse
Don't know... As I sad, I'm a newbie... :$
If it's what I think it is, then:
go to meta-inf> com> google> android and open the updater-script with notepad++. It has to be notepad++
remove the following lining
Code:
assert(getprop("ro.product.device") == "ST15i" || getprop("ro.build.product") == "ST15i" ||
getprop("ro.product.device") == "ST15a" || getprop("ro.build.product") == "ST15a" ||
getprop("ro.product.device") == "smultron" || getprop("ro.build.product") == "smultron");
device names may vary ofc
If I'm wrong, well I tried
iONEx said:
If it's what I think it is, then:
go to meta-inf> com> google> android and open the updater-script with notepad++. It has to be notepad++
remove the following lining
Code:
assert(getprop("ro.product.device") == "ST15i" || getprop("ro.build.product") == "ST15i" ||
getprop("ro.product.device") == "ST15a" || getprop("ro.build.product") == "ST15a" ||
getprop("ro.product.device") == "smultron" || getprop("ro.build.product") == "smultron");
device names may vary ofc
If I'm wrong, well I tried
Click to expand...
Click to collapse
It doesn't have to be Notepad++, editing can be done with regular Notepad also, at least that's what I do.
Also, his ported ROM checks ro.build.date.utc in build.prop.
To OP: Mind posting your update-script here from the flashable-zip?
Someguyfromhell said:
It doesn't have to be Notepad++, editing can be done with regular Notepad also, at least that's what I do.
Click to expand...
Click to collapse
actually when I edit with notepad, I get some error. Forgot the classification number though.
and on various texts about editing updater-script, it says to use notepad++
I'm not sure for what reasons though.
but, well. if you have no problems with notepad editing. I might be wrong.
EDiT:
In these threads it says to use notepad++ otherwise you'll get a status 6 error.
just search status 6 on xda search for more info...
http://forum.xda-developers.com/showthread.php?t=936175
http://forum.xda-developers.com/showthread.php?t=840446
Hello everyone,
I wanted to try the 4.2 camera app and I changed my build.prop to have Galaxy Nexus in the device name. I did backup the original build.prop but forgot to restore it., and I think it is causing me the Status 7 error.
What can I do now to finish the FXP151 installation? Should I try to restore a previous NAND? Thanks for your time.
Installing update...
assert failed : getprop("ro.product.device") == "MT11i" || getprop("ro.build.product") == "MT11i" || getprop("ro.product.device") == "MT11a" || getprop("ro.build.product") == "MT11a" || getprop("ro.product.device") == "haida" || getprop("ro.build.product") == "haida"
E: error in /sdcard/FXP151-cm-10-20121214-UNOFFICIAL-haida.zip
(Status 7)
Installation aborted.
Click to expand...
Click to collapse
Edit update script..delete the assert and its sublines
bluestricker_21 said:
Edit update script..delete the assert and its sublines
Click to expand...
Click to collapse
Many thanks for the swift reply, it worked. Another question if I may, the LED lights are now brighter/stronger, is this normal?
Konosuke said:
Many thanks for the swift reply, it worked. Another question if I may, the LED lights are now brighter/stronger, is this normal?
Click to expand...
Click to collapse
yup it is normal in cm10
Hi all
Serious problem with my mini st15i
I was running cm10 fxp 211 with mesa kernel v4.2
Yesterday everything magnified by 200% on the screen and I tried reflashing cm10
But my phone didn't allow me to.
Now I have tried 4 diff ROMs and have not been able to flash any.
This is the error message I get:
"Error updating zip file (status 7)" on TWRP recovery
Similar error on CWM
SOMEBODY PLEASE HELP!
Try this,
open the zip file in pc (don't extract)
navigate to META-INF>com>google>android>updator-script
try removing the first three lines using notepad++.
something like this
assert(getprop("ro.product.device") == "SK17i" || getprop("ro.build.product") == "SK17i" ||
getprop("ro.product.device") == "SK17a" || getprop("ro.build.product") == "SK17a" ||
getprop("ro.product.device") == "mango" || getprop("ro.build.product") == "mango");
f it still doesn't work, redownload the zip file, it will work
mnishamk said:
Try this,
open the zip file in pc (don't extract)
navigate to META-INF>com>google>android>updator-script
try removing the first three lines using notepad++.
something like this
assert(getprop("ro.product.device") == "SK17i" || getprop("ro.build.product") == "SK17i" ||
getprop("ro.product.device") == "SK17a" || getprop("ro.build.product") == "SK17a" ||
getprop("ro.product.device") == "mango" || getprop("ro.build.product") == "mango");
f it still doesn't work, redownload the zip file, it will work
Click to expand...
Click to collapse
Thank you!!!
You just revived my phone!:victory:
Wish I could hit thanks a few hundred times more!
please add [solved] to your thread title,
clcik edit on first post and go advanced and add [solved]
when installed cm 11 for my lg p765 it shows the following error
this package is for "p760" devices: this is a p940.
E:Error in /sdcard/cm-11-20131214-unofficial-p760.zip
(status 7)
the rom is downloaded from this thread
http://forum.xda-developers.com/showthread.php?t=2547442
please help im a newbie
akhilkumarco007 said:
when installed cm 11 for my lg p765 it shows the following error
this package is for "p760" devices: this is a p940.
E:Error in /sdcard/cm-11-20131214-unofficial-p760.zip
(status 7)
the rom is downloaded from this thread
http://forum.xda-developers.com/showthread.php?t=2547442
please help im a newbie
Click to expand...
Click to collapse
Hey, I have same error with you
Anyone can help me
Make SURE you downloaded the right ROM for P765. If you sure that is the right ROM, open the ROM zip with 7zip and go to META-INF/com/google/android/ and extract updater-script. Open it with Notepad++ (only Notepad++, not Notepad/Wordpad), and delete the first assert() command, like this:
BEFORE:
assert(getprop("ro.product.device") == "p769" || getprop("ro.build.product") == "p769" ||
getprop("ro.product.device") == "p760" || getprop("ro.build.product") == "p760" ||
getprop("ro.product.device") == "u2" || getprop("ro.build.product") == "u2" ||
getprop("ro.product.device") == "p940" || getprop("ro.build.product") == "p940");
mount("ext4", "EMMC", "/dev/block/platform/omap/omap_hsmmc.1/by-name/system", "/system");
......
Click to expand...
Click to collapse
AFTER:
mount("ext4", "EMMC", "/dev/block/platform/omap/omap_hsmmc.1/by-name/system", "/system");
....
Click to expand...
Click to collapse
Save the file, then drag and drop it to original path. Try to flash it again.
akhilkumarco007 said:
when installed cm 11 for my lg p765 it shows the following error
this package is for "p760" devices: this is a p940.
E:Error in /sdcard/cm-11-20131214-unofficial-p760.zip
(status 7)
the rom is downloaded from this thread
http://forum.xda-developers.com/showthread.php?t=2547442
please help im a newbie
Click to expand...
Click to collapse
Vuu Tee said:
Hey, I have same error with you
Anyone can help me
Click to expand...
Click to collapse
It's totally cause you've wrong recovery, update your recovery first, and make sure you have unlock your bootloader...
Its problem of recovery if try to install kitkat rom via cwm it gives status 7 error try artax recovery or twrp they dont give that error
Sent from my LG-P760 using XDA Free mobile app
Yup like the last two guys said you get status 7 when you try to install KitKat with an outdated recovery. Update your recovery and you can reflash the cm11.
Sent from my unlocked LG P769 running AtonX unofficial CM11
ISITBRICKED said:
Yup like the last two guys said you get status 7 when you try to install KitKat with an outdated recovery. Update your recovery and you can reflash the cm11.
Sent from my unlocked LG P769 running AtonX unofficial CM11
Click to expand...
Click to collapse
I have a LG P769 just as you, but I cannot seem to find a newer CWM recovery to install than the one I already have, namely L9RecoveryInstaller_1.5.0.apk which contains clockworkmod version 6.0.1.2. With this verson, I get the same (Status 7) error as everyone else.
So my question is, could you please point me to exactly the (CWM?) recovery mode you are using, and instructions for how to install it given that I am already using an older version of CWM?
PS: The specific error messages during install
"This package is for device p760,p765,p768,p769.u2: this device is p940
.......
(Status 7)
Installation aborted.
PS2: The firmware I am trying to install is cm-11-20141012-UNOFFICIAL-p769.zip from the repository called "LG Optimus L9 by Dhiru1602", located at
https://www.androidfilehost.com/?w=files&flid=18559