Guest painkiller_93 Posted November 13, 2011 Report Posted November 13, 2011 (edited) I'm missing the boot logo with "ZTE Skate" letters in blue colour that appeared before the boot animation, It has been replaced by the green android logo since I unlocked my skate. Is there any chance to get it back? maybe installing an official rom? Edited November 13, 2011 by painkiller_93
Guest tilal6991 Posted November 13, 2011 Report Posted November 13, 2011 I'm missing the boot logo with "ZTE Skate" letters in blue colour that appeared before the boot animation, It has been replaced by the green android logo since I unlocked my skate. Is there any chance to get it back? maybe installing an official rom? You need to tpt the ROM your phone came with. Download whatever it is at
Guest painkiller_93 Posted November 13, 2011 Report Posted November 13, 2011 You need to tpt the ROM your phone came with. Download whatever it is at http://android.modac...ate-stock-roms/ ok, thanks, after installing it I can install cwm again using the .bat file, right?
Guest tilal6991 Posted November 13, 2011 Report Posted November 13, 2011 ok, thanks, after installing it I can install cwm again using the .bat file, right? Yes
Guest D3abL3 Posted November 13, 2011 Report Posted November 13, 2011 (edited) No need to TPT... Just get the same picture from google, convert it to rgb565 and flash it through fastboot... Use this tool to convert picture to raw format: http://dl.dropbox.co...eA688Splash.exe Then flash it through "fastboot flash splash <path-to-raw-picture>" and done. EDIT Made the raw picture of the boot logo, dld here: http://dl.dropbox.com/u/18839428/mysplash.rgb565 See preview: http://dl.dropbox.com/u/18839428/Sem%20t%C3%ADtulo.png Edited November 13, 2011 by D3abL3
Guest painkiller_93 Posted November 13, 2011 Report Posted November 13, 2011 Finally I've flashed my stock movistar version using the unlock tool but replacing all the files in "files" folder with the ones from the zip of the rom. I've got back my ZTE Skate logo and the phone is also still unlocked, yeah!
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 Finally I've flashed my stock movistar version using the unlock tool but replacing all the files in "files" folder with the ones from the zip of the rom. I've got back my ZTE Skate logo and the phone is also still unlocked, yeah! So much work.... :rolleyes:
Guest TouchyAndalou Posted November 14, 2011 Report Posted November 14, 2011 Would anybody be willing to make a zip of that ZTE splash image so us newbs can easily flash it? It'd be appreciated muchly :)
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 Would anybody be willing to make a zip of that ZTE splash image so us newbs can easily flash it? It'd be appreciated muchly :) If you link me up a picture of it I can make the raw file of it so you can flash it on fastboot(simple simple simple :P).
Guest TouchyAndalou Posted November 14, 2011 Report Posted November 14, 2011 If you link me up a picture of it I can make the raw file of it so you can flash it on fastboot(simple simple simple :P). Ok, loads of results come up if I image search ZTE logo on google, but I'm wondering if I can pull the "official" image from the stock Skate rom I downloaded when I was unlocking. I know the boot animation is stored under media, but where is the splash screen stored in a rom's zip? Thanks for your help.
Guest hecatae Posted November 14, 2011 Report Posted November 14, 2011 Could just flash the splash.img
Guest TouchyAndalou Posted November 14, 2011 Report Posted November 14, 2011 Could just flash the splash.img Where in a rom is this stored?
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 (edited) You can make this through adb... C:\>adb shell # cat /proc/mtd <- This will list all your partitions and how they're organized cat /proc/mtd dev: size erasesize name mtd0: 00600000 00020000 "recovery" mtd1: 00400000 00020000 "boot" mtd2: 00180000 00020000 "splash" <- Here it is your splash image mtd3: 00080000 00020000 "misc" mtd4: 03980000 00020000 "cache" mtd5: 0dc00000 00020000 "system" mtd6: 0a280000 00020000 "userdata" mtd7: 00100000 00020000 "oem" mtd8: 00180000 00020000 "persist" #cat /dev/mtd/mtd2 > /sdcard/splash.img <- Let's make a backup to the sdcard cat/dev/mtd/mtd2 > /sdcard/splash.img #cd /sdcard #ls <- This will list all files in your sdcard root **the listing appears here** #exit Edited November 14, 2011 by D3abL3
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 Ignore what I mentioned above about flashing the splash through fastboot. Apparently it is not working as it should... at least for me it isn't.
Guest painkiller_93 Posted November 14, 2011 Report Posted November 14, 2011 (edited) Here's a photo of the Boot logo I could recover from my Original Movistar Spain Rom: Way more cool than the ugly green android, isn't? Edited November 14, 2011 by painkiller_93
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 Here's a photo of the Boot logo I could recover from my Original Movistar Spain Rom: Way more cool than the ugly green android, isn't? Hell yeah!! :D Do this and link me up will ya?
Guest painkiller_93 Posted November 14, 2011 Report Posted November 14, 2011 Hell yeah!! :D Do this and link me up will ya? do I have to write all those lines on cmd while in skate debug mode?
Guest tilal6991 Posted November 14, 2011 Report Posted November 14, 2011 I think a new tutorial is in order...
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 (edited) do I have to write all those lines on cmd while in skate debug mode? These are the only commands you need to issue: adb shell cat /proc/mtd <- This will list all your partitions and how they're organized cat /proc/mtd dev: size erasesize name mtd0: 00600000 00020000 "recovery" mtd1: 00400000 00020000 "boot" mtd2: 00180000 00020000 "splash" <- Here it is your splash image mtd3: 00080000 00020000 "misc" mtd4: 03980000 00020000 "cache" mtd5: 0dc00000 00020000 "system" mtd6: 0a280000 00020000 "userdata" mtd7: 00100000 00020000 "oem" mtd8: 00180000 00020000 "persist" cat /dev/mtd/mtd2 > /sdcard/splash.img <- Let's make a backup to the sdcard cat/dev/mtd/mtd2 > /sdcard/splash.img cd /sdcard ls <- This will list all files in your sdcard root **the listing appears here, you should see "splash.img"** exit The needed commands are in bold, the rest is output. Lalit, if this works please be my guest :P but I'll try to flash his splash.img in fastboot and if it really does work i'll let you know. Edited November 14, 2011 by D3abL3
Guest painkiller_93 Posted November 14, 2011 Report Posted November 14, 2011 (edited) *REMOVED* Give me 5min to verify something. :) oh I already had done it, here is the file: http://www.mediafire...oz29e9z3gdz515f Edited November 14, 2011 by painkiller_93
Guest D3abL3 Posted November 14, 2011 Report Posted November 14, 2011 (edited) oh I already had done it, here is the file: http://www.mediafire...oz29e9z3gdz515f Well after all, i'm a genious(joking). It worked :D(fastboot flash splash <path-to-splash.img>) Damn this splash looks really hot! Feel free to make the "hand made backup tutorial" ;) Here it is: Edited November 14, 2011 by D3abL3
Guest jd- Posted November 15, 2011 Report Posted November 15, 2011 (edited) Tried this on the orange rom, now I get the ZTE logo, the green android and the boot animation. Before it was just the android followed by the animation! What is the filename to replace the 2nd one ? Edited November 15, 2011 by jd-
Guest D3abL3 Posted November 15, 2011 Report Posted November 15, 2011 Tried this on the orange rom, now I get the ZTE logo, the green android and the boot animation. Before it was just the android followed by the animation! What is the filename to replace the 2nd one ? Put your phone in bootloader mode and do this "fastboot erase splash1", "fastboot reboot". Hopefuly it will delete your second splash image.
Guest jd- Posted November 15, 2011 Report Posted November 15, 2011 cheers - will give that a try later on :)
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now