[GUIDE] How to Change Boot Logo (Splash Screen) of LeEco Le 2 / Le S3 - LeEco Le S3 Guides, News, & Discussion

Note:
This is not bootanimation, this is the splash screen (the 'LeEco' boot logo which is displayed when device is switched ON)
This is for LeEco Le 2 / S3 Snapdragon variants Only, like X522/S3 (USA), X520 (Chinese), X526 (Indian), and X527 (International)..
For Mediatek variants, check Post #2..
For other devices, please send me your splash.img so that I can create a tool for you too..
Requirements:
1. Rooted LeEco Le 2 / S3 (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create splash.img:
1. Download & Extract this in computer: LeEco_Le2_Splash_Maker.zip
2. Make sure you have 4 pictures (same or different) in 1080x1920 px resolution in PNG format.
(It seems Le2 displays any 1 picture from the 4 pictures randomly while switching ON, so I think you'll have to use 4 pictures)
3. Now rename your 4 pictures as logo1.png, logo2.png, logo3.png, logo4.png & replace it inside "pics" folder of the extracted folder.
(Similarly you can replace other pictures in it carefully if you wish)
4. Finally, run the 'CREATE_LOGO.bat' to create splash.img and flashable zip file, which you can find inside the "output" folder after completion.
STEPS to flash splash.img:
Optional: To backup your original splash.img:
Code:
dd if=/dev/block/bootdevice/by-name/splash of=/sdcard/splash.img
(Not necessary though.. You may get it from the stock firmware itself.)
Now, Choose any one easy method:
a. To flash from recovery:
Transfer the flashable_splash.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the splash.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/splash.img of=/dev/block/bootdevice/by-name/splash
c. To flash from Fastboot mode:
Code:
fastboot flash splash splash.img
Note:
Incase something goes wrong or device doesn't bootup, flash the stock splash.img from custom recovery or fastboot.
If some pictures are jumbled or do not appear, check this trick here: https://forum.xda-developers.com/showpost.php?p=71454608&postcount=18
(Or send me your stock splash.img)
Thanks to @Achyuth Reddy who provided the stock splash.img of Le 2 X526 ..
Hit the Thanks :good: button if it worked for you
You're welcome to share the splash images that you created

For Le 2 Mediatek Variants
For MTK devices, you might have a different partition for that called 'logo'.
Browse in /dev directory to find out where that is present.
After you have found out, dump the logo.bin file by:
Code:
dd if=/<the_directory_where_logo_is_present>/logo of=/sdcard/logo.bin
Now you can edit the logo.bin using this tool:
Changing Boot Logo (logo.bin) - LOGO BUILDER Program
After editing, you can reflash it by:
Code:
dd if=/sdcard/logo.bin of=/<the_directory_where_logo_is_present>/logo
If you did this successfully, please share the details of how you did it so that it will be helpful for others..
Or if that tool doesn't work, send me your logo.bin or splash.img, I'll check it..

Thanks.. Gone try it.. :laugh:

worked fine for me, but couldn't flash it in bootloader mode (had to flash the zip file in twrp). Thanks!

it didn't work properly for me.... the images were not centered and also it got jumbled.... any fix?

Is there any known limitation in image size (not resolution)?
Samples are about 200kb at maximum, what about 500 kb?
update: ok it works with files up to 500kb.
update2: just for demo, btw it's a x527...

JamBax said:
update2: just for demo, btw it's a x527...
Click to expand...
Click to collapse
Hi, can you share this splash Image ?
I have x527 and i like it. :good:
Thanks.

marco-ko said:
Hi, can you share this splash Image ?
I have x527 and i like it. :good:
Thanks.
Click to expand...
Click to collapse
I can and I will do
But I'll have to recreate that one, because I made another one already.
Guess it will be online tomorrow, not to say 'soon'
btw. if anyone knows where to find that android font, that would be great :good:

marco-ko said:
Hi, can you share this splash Image ?
I have x527 and i like it. :good:
Thanks.
Click to expand...
Click to collapse
I uploaded the files to mega (this is first version). (link removed)
sometimes the images seem to be out of order, for example fastboot and recovery are exchanged
Maybe @GokulNC knows why this happens??

JamBax said:
I uploaded the files to mega (this is first version).
sometimes the images seem to be out of order, for example fastboot and recovery are exchanged
Maybe @GokulNC knows why this happens??
Click to expand...
Click to collapse
Thanks JamBax but when i try to open the link to Mega it asks to enter the "Decryption key"
Please verify it.
Can You share also the newest splash You made (if they are for X527)?

marco-ko said:
Thanks JamBax but when i try to open the link to Mega it asks to enter the "Decryption key"
Please verify it.
Can You share also the newest splash You made (if they are for X527)?
Click to expand...
Click to collapse
Sorry for that, try this link
the other one will be in the same folder (V2 of course).

JamBax said:
Sorry for that, try this link
the other one will be in the same folder (V2 of course).
Click to expand...
Click to collapse
Ok i downloads it.
In the folder there is V1 and V1a.....Not V2
Is V1a that You mean V2?

marco-ko said:
Ok i downloads it.
In the folder there is V1 and V1a.....Not V2
Is V1a that You mean V2?
Click to expand...
Click to collapse
V1 is original order which is mixed up at my device,
V1a is mixed up, but shows correct on my device
V2 will be there when it's ready, I'm working on it... :angel:
btw, V2 will be named V2

@marco-ko V2 is online

JamBax said:
@marco-ko V2 is online
Click to expand...
Click to collapse
Thanks :good: :good:

Have anyone tried this X526 splash.img on X520?
Because I have X520 (Chinese version) and I want to see only english text when my phone is booting.

umarbest said:
Because I have X520 (Chinese version) and I want to see only english text when my phone is booting.
Click to expand...
Click to collapse
You can try it yourself :good: the original splash.img is inside the stock rocm archive.
Size should be equal.
Only the cpu (snapdragon) is important.

For all those having issues with the incorrect images appearing.
What worked for me was changing the order the images are processed in CREATE_LOGO.bat, I simply moved logo4 to the bottom of the list.
How to:
Using a text editor to modify CREATE_LOGO.bat
Change:
Code:
set pic4_path="not_found"
if exist "pics\logo4.png" set pic4_path="pics\logo4.png"
if exist "pics\logo4.jpg" set pic4_path="pics\logo4.jpg"
if exist "pics\logo4.jpeg" set pic4_path="pics\logo4.jpeg"
if exist "pics\logo4.bmp" set pic4_path="pics\logo4.bmp"
if exist "pics\logo4.gif" set pic4_path="pics\logo4.gif"
if %pic4_path%=="not_found" echo.logo4.png or logo4.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic5_path="not_found"
if exist "pics\fastboot.png" set pic5_path="pics\fastboot.png"
if exist "pics\fastboot.jpg" set pic5_path="pics\fastboot.jpg"
if exist "pics\fastboot.jpeg" set pic5_path="pics\fastboot.jpeg"
if exist "pics\fastboot.bmp" set pic5_path="pics\fastboot.bmp"
if exist "pics\fastboot.gif" set pic5_path="pics\fastboot.gif"
if %pic5_path%=="not_found" echo.fastboot.png or fastboot.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic6_path="not_found"
if exist "pics\recovery.png" set pic6_path="pics\recovery.png"
if exist "pics\recovery.jpg" set pic6_path="pics\recovery.jpg"
if exist "pics\recovery.jpeg" set pic6_path="pics\recovery.jpeg"
if exist "pics\recovery.bmp" set pic6_path="pics\recovery.bmp"
if exist "pics\recovery.gif" set pic6_path="pics\recovery.gif"
if %pic6_path%=="not_found" echo.recovery.png or recovery.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic7_path="not_found"
if exist "pics\battery.png" set pic7_path="pics\battery.png"
if exist "pics\battery.jpg" set pic7_path="pics\battery.jpg"
if exist "pics\battery.jpeg" set pic7_path="pics\battery.jpeg"
if exist "pics\battery.bmp" set pic7_path="pics\battery.bmp"
if exist "pics\battery.gif" set pic7_path="pics\battery.gif"
if %pic7_path%=="not_found" echo.battery.png or battery.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
To:
Code:
set pic4_path="not_found"
if exist "pics\fastboot.png" set pic4_path="pics\fastboot.png"
if exist "pics\fastboot.jpg" set pic4_path="pics\fastboot.jpg"
if exist "pics\fastboot.jpeg" set pic4_path="pics\fastboot.jpeg"
if exist "pics\fastboot.bmp" set pic4_path="pics\fastboot.bmp"
if exist "pics\fastboot.gif" set pic4_path="pics\fastboot.gif"
if %pic4_path%=="not_found" echo.fastboot.png or fastboot.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic5_path="not_found"
if exist "pics\recovery.png" set pic5_path="pics\recovery.png"
if exist "pics\recovery.jpg" set pic5_path="pics\recovery.jpg"
if exist "pics\recovery.jpeg" set pic5_path="pics\recovery.jpeg"
if exist "pics\recovery.bmp" set pic5_path="pics\recovery.bmp"
if exist "pics\recovery.gif" set pic5_path="pics\recovery.gif"
if %pic5_path%=="not_found" echo.recovery.png or recovery.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic6_path="not_found"
if exist "pics\battery.png" set pic6_path="pics\battery.png"
if exist "pics\battery.jpg" set pic6_path="pics\battery.jpg"
if exist "pics\battery.jpeg" set pic6_path="pics\battery.jpeg"
if exist "pics\battery.bmp" set pic6_path="pics\battery.bmp"
if exist "pics\battery.gif" set pic6_path="pics\battery.gif"
if %pic6_path%=="not_found" echo.battery.png or battery.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
set pic7_path="not_found"
if exist "pics\logo4.png" set pic7_path="pics\logo4.png"
if exist "pics\logo4.jpg" set pic7_path="pics\logo4.jpg"
if exist "pics\logo4.jpeg" set pic7_path="pics\logo4.jpeg"
if exist "pics\logo4.bmp" set pic7_path="pics\logo4.bmp"
if exist "pics\logo4.gif" set pic7_path="pics\logo4.gif"
if %pic7_path%=="not_found" echo.logo4.png or logo4.jpg not found in 'pics' folder.. EXITING&echo.&echo.&pause&exit
On my Le x522 I can verify logo1-3, recovery, fastboot, and battery were displayed correctly while logo4 never made an appearance..

JamBax said:
You can try it yourself :good: the original splash.img is inside the stock rocm archive.
Size should be equal.
Only the cpu (snapdragon) is important.
Click to expand...
Click to collapse
Hi guys,
Link was removed ?
where I can to download IMG for X527_english_SplashScreen ?

Which link, which img?
This thread is about how to create your own img (or zip if you like better).

Related

[HOW TO] Replace initial splash screen (logo) on Huawei P7

If somebody want to replace provider/operator/or any other splash screen on Huawei device just do as follow:
Root required
First way:
Install Adb and Fastboot
Download this utility to ADB folder on PC
By Windows CMD go to ADB folder and use this commands:
(observe phone and make appropriate permissions if needed)
adb shell su -c "dd if=/dev/block/platform/hi_mci.0/by-name/oeminfo of=/sdcard/oeminfo"
adb pull /sdcard/oeminfo oeminfo
Make copy original oeminfo file
Download stock HW splash (logo) or make your own picture *.bmp. Bitmap resolution should match your device resolution (1080x1920 pixels). Put it to ADB folder.
In ADB folder use commands:
oem_logo.exe oeminfo logo.bmp
adb push oeminfo /sdcard/oeminfo
adb shell su -c "dd if=/sdcard/oeminfo of=/dev/block/platform/hi_mci.0/by-name/oeminfo"
adb rm -f /sdcard/oeminfo
Reboot
More options described here.
Second way:
Download this (translated bye me) utility
Unzip and use it
Additionally:
If you want to use Huawei stock splash screen you can install this file by custom recovery. It replace any splash screen you have installed by original HW.
Off course you can use this script to installing your own logo. Just replace file \dev\block\platform\hi_mci.0\by-name\oeminfo in downloaded zip by your own file created accordingly to above first method (by oem_logo.exe).
All credits to:
Kostyan_nsk
wistonbogarde
For my just click thanks
Notice !
Everything you are doing on your own RISK !
nice ,but warning oeminfo contain such things as IMEI
Z!L0G80 said:
nice ,but warning oeminfo contain such things as IMEI
Click to expand...
Click to collapse
Are you sure? I'dont think so. At least, I was unable to find IMEI there. And it would be too easy to change IMEI if it could be in oeminfo partition...
Kostyan_nsk said:
Are you sure? I'dont think so. At least, I was unable to find IMEI there. And it would be too easy to change IMEI if it could be in oeminfo partition...
Click to expand...
Click to collapse
imei is crypted by aes key, oeminfo probably contain some other phone related information I DONT RECOMENDED TO FLASH THIS < YOU CAN PROBABLY BRICK YOUR PHONE
hi Kostyan_nsk and z!log80 !
I have recently flashed oeminfo.img without isssues (thanks again Kostyan_nsk)
I wanted to give it a try and ask please Kostyan_nsk or z!log80 for a brief explanation about how oem_logo.exe performs the bitmap replacement. Is it possible to mount oeminfo.img browse its file system and replace a particular file, or is it by searching bitmap signature, …?
Thanks Ziolek67 for starting this thread :laugh:
Printusrzero said:
hi Kostyan_nsk and z!log80 !
I have recently flashed oeminfo.img without isssues (thanks again Kostyan_nsk)
I wanted to give it a try and ask please Kostyan_nsk or z!log80 for a brief explanation about how oem_logo.exe performs the bitmap replacement. Is it possible to mount oeminfo.img browse its file system and replace a particular file, or is it by searching bitmap signature, …?
Thanks Ziolek67 for starting this thread :laugh:
Click to expand...
Click to collapse
do you have same imei as before ? oeminfo doesnt contain filesystem - no mount
yes, same as before
if no file system or mount then I guest search for a pattern or dedicated tool to package... I have been trying to find further more precise information about oeminfo.img but had not found much so far. I would appreciate if you can contribute to make this a bit clearer for me
thanks
[Edited]
After a bit of research I have found other mods for factory device location, etc. writing to particular offsets, tools to modify, backup and restore oeminfo.img. It is a data store. No embedded code. Thnx!
Z!L0G80 said:
imei is crypted by aes key, oeminfo probably contain some other phone related information I DONT RECOMENDED TO FLASH THIS < YOU CAN PROBABLY BRICK YOUR PHONE
Click to expand...
Click to collapse
Eazy. I tried it many times... It works perfectly. I never publish potentially dangerous untested features.
Z!L0G80 said:
imei is crypted by aes key, oeminfo probably contain some other phone related information I DONT RECOMENDED TO FLASH THIS < YOU CAN PROBABLY BRICK YOUR PHONE
Click to expand...
Click to collapse
I flashed whole oeminfo partition from other device and my IMEI stayed the same. As I supposed, it's somewhere else, but not in oeminfo partition. You are wrong.
You must NOT be alarm
Kostyan_nsk said:
I flashed whole oeminfo partition from other device and my IMEI stayed the same. As I supposed, it's somewhere else, but not in oeminfo partition. You are wrong.
Click to expand...
Click to collapse
Do not worry, I also used HW-OEM_LOGO.ZIP to change the booting logo for the original one, and my IMEI is the same as I bought it in the store, so do not be alarmed !!!!:laugh:
Also worked on P8 B321, IMEI stayed the same.
Download links not working, could someone provide new ones please?
Fedroid said:
Download links not working, could someone provide new ones please?
Click to expand...
Click to collapse
Hi!
You can to use the last version File, this is for change the intial Logo and/or bootanimation.
Thanks!

[GUIDE] How to Create Custom Splash Screen (Boot Logo) for Redmi 2 & Redmi 3

Note:
This is not bootanimation, this is the splash screen (the 'Mi' boot logo which is displayed when device is switched ON)
This is for Redmi 2/2S Prime or Redmi 3/3S/3X/Pro Only..
For other devices, please send me your splash.img so that I can create a tool for you too.
Requirements:
1. Rooted Redmi 2/2S Prime or Redmi 3/3S/3X/Pro (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create splash.img:
Before proceeding, make sure fastboot is setup properly in your computer (just incase something goes wrong)..
1. Download & Extract this in computer: Redmi_2,3_Splash_Maker.zip
2. Make sure you have a 720x1280 resolution picture.
3. Now rename your picture as logo.png or logo.jpg (according to its format) & replace it inside "pics" folder of the extracted folder.
(Similarly you can also change fastboot.png if you wish to change the picture of fastboot)
4. Finally, run the 'Create_Logo.bat' to create splash.img , which you can find inside the "output" folder.
STEPS to flash splash.img:
Optional: To backup your original splash.img:
Code:
dd if=/dev/block/bootdevice/by-name/splash of=/sdcard/splash.img
(Not necessary though.. You may get it from the stock firmware itself.)
Now, Choose any one easy method:
a. To flash from recovery:
Transfer the flashable_splash.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the splash.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/splash.img of=/dev/block/bootdevice/by-name/splash
c. To flash from Fastboot mode:
Code:
fastboot flash splash splash.img
Note:
Incase something goes wrong or device doesn't bootup, flash the stock splash.img from custom recovery or fastboot.
Credits:
1. @GokulNC (myself ) who wrote this script
(This one is just a copy from my thread here: [GUIDE] How to Create Custom Splash Screen for Lenovo A6000)
2. @kumajaya for the stock splash.img of Redmi 2
Hit the Thanks :good: button if it worked for you
You're welcome to post the splash images that you created..
very nice you came up with some output. i tried lots of things but zero success.
BTW I made something here for myself in ms paint
Get those images from attachments below. Believe me, it looks awesome.
Also, it will be good if you add adb shell guide too for flashing with dd
Wow, I was really looking forward to this thing!!!
Guys, I have a request if this has been tested by you to be working, can you please port the awesome batman bootlogo here, over at http://forum.xda-developers.com/android/themes/bootlogo-awesome-batman-bootlogo-t3264750
.
Maybe you can also edit the image to contain a small MI logo (only for people who want it, not me xD) .
.
Hope this can be achieved - I'd be dammed
shanx_verma said:
Wow, I was really looking forward to this thing!!!
Guys, I have a request if this has been tested by you to be working, can you please port the awesome batman bootlogo here, over at http://forum.xda-developers.com/android/themes/bootlogo-awesome-batman-bootlogo-t3264750
.
Maybe you can also edit the image to contain a small MI logo (only for people who want it, not me xD) .
.
Hope this can be achieved - I'd be dammed [emoji14]
Click to expand...
Click to collapse
I'll try tommorow.
Sent from my 2014818 using Tapatalk
#NoobPremium
noobpremium said:
I'll try tommorow.
Sent from my 2014818 using Tapatalk
Click to expand...
Click to collapse
Thank You !!!
*thanks button not working somehow :? *
EDIT -
In the same splash (set), maybe you can choose one of these to make the fastboot splash -
.
http://androidwalls.org/wp-content/...0-batman_the_dark_knight_black_background.jpg
.
http://m.androidwallpapercentral.com/downloads/BatmanSilhouetteAndroidLogo.jpg
.
http://wallpapersonthe.net/11662-the-dark-knight-joker-batman-anime-dark/
.
http://www.hdgalaxyalphawallpaper.com/wp-content/uploads/Movie/Batman Galaxy Alpha Wallpapers.jpg
.
http://www.hdgalaxyalphawallpaper.c...Movie/Batman Dark Galaxy Alpha Wallpapers.jpg
*I know, too many choices* *batman love *
Here are some minimal superhero logos for you all!
Thank you @GokulNC for this guide.
Can you please also include in the OP the terminal command to backup stock one while in the OS?
shanx_verma said:
Can you please also include in the OP the terminal command to backup stock one while in the OS?
Click to expand...
Click to collapse
He has given stock images with the tool itself. Have a look at it.
Otherwise if you want some thrill (xD)
Here's command for you:
Run as superuser.*(I assume you know it)
Code:
dd if=/dev/block/bootdevice/splash of=/sdcard/splash.img
Sent from my 2014818 using Tapatalk
- DELETED -
New BatBootLogo
This is what I created... How you like it.
Fully compatible with 2014818.
Gonna make a "Theft chance reducer" splash
Thanks
Maybe a Self-destruction message on the fastboot wold be nice :v
!
Lennoard said:
Gonna make a "Theft chance reducer" splash
Thanks
Maybe a Self-destruction message on the fastboot wold be nice :v
Click to expand...
Click to collapse
Perfectt!!!
Do share here!
@shanx_verma
This is my antitheft image :v
I hope it is useful to avoid stock firmware reset in case of a theft (Yeah, this happens a lot here, thieves are getting smart)
So it is basically a super joke
The first picture tells who owns it, address, email and phone (in case of a simple loss), it indicates that the GPS is on and working (fake :v) and displays a warning that the device is monitored.
Second one is the best
I get an error in terminal part.
Its says :
dd: unknown operand to
Anyone got this error too ?
MRAT47 said:
I get an error in terminal part.
Its says :
dd: unknown operand to
Anyone got this error too ?
Click to expand...
Click to collapse
What device is it?
Redmi 2 or 3?
It's not yet tested in Redmi 3, but working perfectly in Redmi 2..
GokulNC said:
What device is it?
Redmi 2 or 3?
It's not yet tested in Redmi 3, but working perfectly in Redmi 2
Click to expand...
Click to collapse
Redmi 2
Thanks, it works great!! How do we change the charging animation when switched off and plugged in to a charger?
MRAT47 said:
Redmi 2
Click to expand...
Click to collapse
Enter the command properly with proper file name & path..
It's working cool with other users..
Name_Hidden said:
Thanks, it works great!! How do we change the charging animation when switched off and plugged in to a charger?
Click to expand...
Click to collapse
It's in the kernel I guess.
Nothing to do with splash.img ..
That might also be cached in /res/images as a read-only file, just for you to see what it is
Sir, how to flash fastboot splash? Is it has the same way with "how to flash boot splash"? Or not.! Please show me the code!!
Dyt199412syam said:
Sir, how to flash fastboot splash? Is it has the same way with "how to flash boot splash"? Or not.! Please show me the code!!
Click to expand...
Click to collapse
Code:
fastboot flash splash splash.img
Sent from my 2014818 using Tapatalk

[GUIDE][Coolpad Cool1 Dual] How to Change Boot Logo (Splash Screen)

Note:
This is not bootanimation, this is the splash screen (the 'Coolpad' boot logo which is displayed when device is switched ON)
This is for Coolpad Cool1 Dual Snapdragon variants Only..
For other devices, please send me your splash.img so that I can create a tool for you too..
Requirements:
1. Rooted Coolpad Cool1 Dual (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create splash.img:
1. Download & Extract this in computer: Coolpad_Cool1_Dual_Splash_Maker.zip
2. Make sure you have 4 pictures (same or different) in 1080x1920 px resolution in PNG format.
(It seems Coolpad displays any 1 picture from the 4 pictures randomly while switching ON, so I think you'll have to use 4 pictures)
3. Now rename your 4 pictures as logo1.png, logo2.png, logo3.png, logo4.png & replace it inside "pics" folder of the extracted folder.
(Similarly you can replace other pictures in it carefully if you wish)
4. Finally, run the 'CREATE_LOGO.bat' to create splash.img and flashable zip file, which you can find inside the "output" folder after completion.
STEPS to flash splash.img:
Optional: To backup your original splash.img:
Code:
dd if=/dev/block/bootdevice/by-name/splash of=/sdcard/splash.img
(Not necessary though.. You may get it from the stock firmware itself.)
Now, Choose any one easy method:
a. To flash from recovery:
Transfer the flashable_splash.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the splash.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/splash.img of=/dev/block/bootdevice/by-name/splash
c. To flash from Fastboot mode:
Code:
fastboot flash splash splash.img
Note:
Incase something goes wrong or device doesn't bootup, flash the stock splash.img from custom recovery or fastboot.
Credits:
1. Thanks to @Vikasspattel who provided the stock splash.img of Coolpad Cool 1 Dual ..
2. This is just a modified version of my tool here: [GUIDE] How to Change Boot Logo (Splash Screen) of LeEco Le 2 / Le S3
Hit the Thanks :good: button if it worked for you
You're welcome to share the splash images that you created
Thank You sir for reading my comment and helped by your quick effort ,
well i had no hope but thank you so much
hi
i installed custom recovery to cool 1 c 103
after it finished model number changed to 106
what i have to do?????

[GUIDE] How to change Boot Logo of P8 Lite 2017

Note:
This is not bootanimation, this is the splash screen (the 'Huawei' boot logo which is displayed when device is switched ON)
This is for Huawei P8 Lite 2017 Only.. (Resolution 1080x1920)
For other devices, please send me your splash.img so that I can create a tool for you too.
Requirements:
1. Rooted Huawei P8 Lite 2017 (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
Use this tool and instructions:
Huawei OEM_logo Changer
Note: Use a 1080x1920 pic, as .bmp file (in rgb565 format as specified in that post)
Old method:
STEPS to create boot logo:
1. Download & Extract this in computer: Huawei_P8_Lite_2017_Logo_Maker.zip
2. Make sure you have a picture in BMP format with resolution exactly 1080x1920px. (Can be of any format)
3. Now rename your picture as logo.bmp & replace it inside "pics" folder of the extracted folder. (Or directly edit the 'logo.bmp' file)
4. Finally, run the 'CREATE_LOGO.bat' to create oeminfo.img and flashable zip file, which you can find inside the "output" folder after completion.
STEPS to flash boot logo:
Steps to backup your oeminfo.img:
Open Terminal Emulator, type the following command to save your stock oeminfo.img to your Internal Storage:
Code:
su
dd if=/dev/block/platform/hi_mci.0/by-name/oeminfo of=/sdcard/oeminfo_stock.img
Now, choose any one easy method to install:
a. To flash from recovery:
Transfer the flashable_logo.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the oeminfo.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/oeminfo.img of=/dev/block/platform/hi_mci.0/by-name/oeminfo
c. To flash from Fastboot mode:
Code:
fastboot flash oeminfo oeminfo.img
Finally, Reboot and check if the bootlogo has changed!!
Note:
Incase something goes wrong or device doesn't bootup, just flash the stock oemlogo.img from custom recovery or fastboot.
Credits:
1. @CrimsonBloodfang who provided the stock oemlogo.img of P8 Lite 2017 (PRA-LX2)..
2. @GokulNC (myself ) who wrote this script
Hit the Thanks :good: button if it worked for you
You're welcome to post the splash images that you created..
Is that working with all variants of the p8lite 2017? I rebranded mine to the Chinese Honor Version.
Doesn't work for me., same logo as before.
rebranded mine too
---------- Post added at 09:07 PM ---------- Previous post was at 09:05 PM ----------
https://imgur.com/a/XAup4
just made this btw, it's already in the right format.
GokulNC said:
TESTING:
@CrimsonBloodfang
1. Can you please check if this tool is working??
2. Please check if flashing the zip from custom recovery works.
3. Please attach your 'oeminfo' partition backup. I guess it might have the logo inside it (if the above procedure doesn't work)
4. Are there different variants of P8 Lite like P8lite 2017 , etc. ?
Click to expand...
Click to collapse
1. I am able to create a new "oemlogo.mbn" and a "flashable_logo.zip" through your tool but unfortunately the stock boot logo of Huawei still shows up in every reboot, after using the two files.
2. The zip file works in TWRP Recovery and was flashed without errors but the stock boot logo still shows upon reboot then after rebooting, I checked /product/etc/logo/ and the stock oemlogo.mbn was not replaced with the new one.
3. Here is the oeminfo.img backup, by using this command in a terminal emulator
Code:
su
dd if=/dev/block/platform/hi_mci.0/by-name/oeminfo of=/sdcard/oeminfo.img
and this one is the raw file itself. I only used two out of three methods of backing up the oeminfo partition based from this thread because I was unsure as to where in TWRP Recovery should I find the backup for oeminfo partition since it only has the options Boot, Cache, Data, System and Vendor for backup. Maybe in the "Vendor" partition, but the backup size is 394 MB.
4. I'm not sure for the variants of Huawei P8 Lite, maybe only Huawei P8 Lite (2017) and the ones on the "download section" in this link? If you meant the Huawei P8 Lite (2017) variants, the ones I know are Huawei P8 Lite (2017) PRA-LX1, PRA-LX2, PRA-LX3, PRA-LA1 and PRA-TL00. I'm using the Huawei P8 Lite (2017) PRA-LX2.
I've also tried copy pasting the new oemlogo.mbn then changed it to the correct permissions (-rw-r--r--). I even tried renaming it to "oemlogo.mbn.bak" to see if there's any change but it seems that this file is not in control of the boot logo. We also have the boot warning logo too by the way, the one that is caused by unlocking the bootloader.
Here is my own logo.bmp boot logo, 1080x1920 resolution, edited through Gimp 2 and exported as .bmp file format.
Edit: Does anyone know where is the exact location for our boot logo files? I've also found the same oemlogo.mbn file on some folders in /product/hw_oem
@CrimsonBloodfang
The oeminfo.img file had the pictures as I guessed.
I have updated the OP with the new tool. Please check if it's working
Also, I think the files in the '/product/hw_oem/whatever' directory are created from the oemlogo partition while booting (not sure though).
So maybe using the old tool, setting the permissions for oemlogo.bin as -r--r--r-- might have worked (since write access is denied).
Edit:
As specified in GSMArena website, is it true that P8 Lite (2017) is also called Huawei P9 Lite (2017), Huawei Honor 8 Lite, Huawei Nova Lite, Huawei GR3 (2017) ???
If yes, this tool MIGHT work for those devices too.
Thanks! I will be testing it now.
GokulNC said:
@CrimsonBloodfang
Edit:
As specified in GSMArena website, is it true that P8 Lite (2017) is also called Huawei P9 Lite (2017), Huawei Honor 8 Lite, Huawei Nova Lite, Huawei GR3 (2017) ???
If yes, this tool MIGHT work for those devices too.
Click to expand...
Click to collapse
Yes, it is called with different names from different countries and they are more or less, just the same devices.
In the Philippines, this phone is called the Huawei GR3 (2017).
Edit:
Maybe the users need to backup their own "oeminfo.img" first before using the tool and can you add it on OP? They might use my device's oeminfo.img if they forgot to backup and it might change their device's region settings then their stock updates would be based from my country.
I haven't rebranded my phone, just went straight to LineageOS 14.1 so I'm not sure about the consequences of flashing other oeminfo.
still not working for me. Now it's just booting into eRecovery and the logo was changed to the original one
@GokulNC
It also didn't work for me. I've tested it six or more times with both the Terminal Emulator and the TWRP Recovery flash method.
Edit:
The logo file in "pics" folder of the tool has a logo.png and not anymore a logo.bmp, so I tried both file formats just in case. I've tried replacing it with logo.bmp, I've tried replacing it with logo.png and I've tried placing both logo.bmp and logo.png together on the "pics" folder. Then flashed the six different files of oeminfo.img and flashable_logo.zip with Terminal Emulator and TWRP Recovery, but on every reboot, the boot logo is still at stock.
The only locations left I can guess as to where the boot logo files for Huawei P8 Lite (2017) are maybe in the Boot partition or it's embedded in the Kernel.
@CrimsonBloodfang
Actually there were many .bmp pics inside the oeminfo.img
I didn't look at that properly.
When I extracted them, I saw 2 bootlogo images.
So I've modified the tool to change them both.
Try the new tool that I've uploaded now and see if it's working
It should contain 2 files named logo1.png and logo2.png
CrimsonBloodfang said:
The only locations left I can guess as to where the boot logo files for Huawei P8 Lite (2017) are maybe in the Boot partition or it's embedded in the Kernel.
Click to expand...
Click to collapse
Nope, I don't think so..
MIcHiJK said:
Is that working with all variants of the p8lite 2017? I rebranded mine to the Chinese Honor Version.
Click to expand...
Click to collapse
I'm not sure if the oeminfo partition is same across all the different firmwares.
I guess they all must be the same. If you can attach your stock 'oemlogo.img', I'll take a look at it.
CrimsonBloodfang said:
The logo file in "pics" folder of the tool has a logo.png and not anymore a logo.bmp, so I tried both file formats just in case. I've tried replacing it with logo.bmp, I've tried replacing it with logo.png and I've tried placing both logo.bmp and logo.png together on the "pics" folder.
Click to expand...
Click to collapse
My tool automatically converts everything to .bmp format, so it doesn't matter
Striike said:
still not working for me. Now it's just booting into eRecovery and the logo was changed to the original one
Click to expand...
Click to collapse
I'm not sure about the rebranded device. Can you please attach your 'oeminfo' file?
I'll check that out.
GokulNC said:
@CrimsonBloodfang
Actually there were many .bmp pics inside the oeminfo.img
I didn't look at that properly.
When I extracted them, I saw 2 bootlogo images.
So I've modified the tool to change them both.
Try the new tool that I've uploaded now and see if it's working
It should contain 2 files named logo1.png and logo2.png
Click to expand...
Click to collapse
Ok, I've flashed the flashable_logo.zip using the new tool and it seems to work. Boot logo is not anymore the stock one but instead, it's replaced by a "glitched image" with a color green background and two rectangles with colors pink and blue, not the boot logo I made. Boot warning sign is still there afterwards though.
It may be a wrong procedure on my part because I just placed my logo.bmp together with the logo1.png and logo2.png but I will continue tinkering and testing it or have a lower file sized image to see if I can finally get the desired boot logo.
---------- Post added at 11:04 PM ---------- Previous post was at 10:52 PM ----------
Also flashed my backup oeminfo.img through Terminal Emulator or TWRP Recovery and everything went back to normal.
@GokulNC
Tested it many times, boot logo always end up with the "glitched image" as attached below.
This is not the original image. Just an edited image through Gimp 2, for reference.
CrimsonBloodfang said:
@GokulNC
Tested it many times, boot logo always end up with the "glitched image" as attached below.
This is not the original image. Just an edited image through Gimp 2, for reference.
Click to expand...
Click to collapse
Does this arise after changing the logo2.png (or logo2.bmp)??
Is that the same output no matter what the logo2 is?
I mean, even for the default one that I've placed in pics folder or what you replaced with, is the output the same weird image??
FYI, ensure there are only 2 images in the pics folder while creating the oemlogo.img, ie, logo1.<whatever_format> and logo2.<whatever_format>
GokulNC said:
Does this arise after changing the logo2.png (or logo2.bmp)??
Is that the same output no matter what the logo2 is?
I mean, even for the default one that I've placed in pics folder or what you replaced with, is the output the same weird image??
FYI, ensure there are only 2 images in the pics folder while creating the oemlogo.img, ie, logo1.<whatever_format> and logo2.<whatever_format>
Click to expand...
Click to collapse
Yes, I've already tried different ways like replacing only the logo2.png or replace both images and also ensured there are two images in the pics folder.
I also tried using only the "default images" and did not replace anything in the pics folder, then flashed the newly created files and the resulting boot logo is still the glitched image.
Edit:
The image in this post is what the glitched image of the boot logo, actually looks like.
GokulNC said:
Note:
This is not bootanimation, this is the splash screen (the 'Lenovo' boot logo which is displayed when device is switched ON)
This is for Huawei P8 Lite 2017 Only.. (Resolution 1080x1920)
For other devices, please send me your splash.img so that I can create a tool for you too.
Requirements:
1. Rooted Huawei P8 Lite 2017 (any ROM)
2. Optional:Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create boot logo:
1. Download & Extract this in computer: Huawei_P8_Lite_2017_Logo_Maker.zip
2. Make sure you have a picture in BMP format with resolution exactly1080x1920px. (Can be of any format)
3. Now rename your picture as logo.bmp & replace it inside "pics" folder of the extracted folder. (Or directly edit the 'logo.bmp' file)
4. Finally, run the 'CREATE_LOGO.bat' to create oeminfo.img and flashable zip file, which you can find inside the "output" folder after completion.
STEPS to flash boot logo:
Choose any one easy method:
a. To flash from recovery:
Transfer the flashable_logo.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the oeminfo.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
c. To flash from Fastboot mode:
Finally, Reboot and check if the bootlogo has changed!!
Note:
Incase something goes wrong or device doesn't bootup, just flash the stock oemlogo.img from custom recovery or fastboot.
Credits:
1. @CrimsonBloodfang who provided the stock oemlogo.img of P8 Lite 2017 (PRA-LX2)..
[email protected] (myself ) who wrote this script
Hit the Thanks:good: button if it worked for you
You're welcome to post the splash images that you created..
Click to expand...
Click to collapse
Thanks bro
Very useful guide
CrimsonBloodfang said:
Yes, I've already tried different ways like replacing only the logo2.png or replace both images and also ensured there are two images in the pics folder.
I also tried using only the "default images" and did not replace anything in the pics folder, then flashed the newly created files and the resulting boot logo is still the glitched image.
Edit:
The image in this post is what the glitched image of the boot logo, actually looks like.
Click to expand...
Click to collapse
Hi, sorry for my late reply. Got stuck up with something lately.
I have attached a new tool, with little changes.
Please check if it's working.
If it doesn't, I'm not sure what else to do.
honorfan said:
Thanks bro
Very useful guide
Click to expand...
Click to collapse
Hi, did this work for you?
Thanks, I will be testing it later. I've also found out from another user that changing the boot logo using the tool, has stopped working in Nougat and Oreo.
Here is what he said, and this thread is also changing their Huawei device using the oeminfo partition.
Maybe you already know these?
@GokulNC
Tested it twice, it's still showing the glitched image.
My first attempt was replacing the logo2.png with another image as logo2.bmp. Flashed the files through TWRP Recovery, rebooted and the result is still the glitched image.
Second attempt was to not replace anything in the "pics" folder. Created the files, flashed them in TWRP Recovery, rebooted and the result is still the same.
I've been searching around xda forums for information about editing Huawei's oeminfo for its boot logo image and I noticed that their tutorials needs to follow a "specific RGB format" when editing the images to be used as a boot logo. (Bitmap file with color depth not less than 16 bit, supported color schemes: RGB555, RGB565, RGB888, RGB8888)
Although, I'm uncertain that this might be the cause of the problems and I haven't tried it yet.
- Follow any of the RGB formats to fix the problem.
I've only tried "RGB565" and "RGB888 with color depth of 24 bits".
On the other hand, seeing the "glitched image" as a boot logo, might just only be an indication of a corrupted oeminfo, when it's not properly recompiled or reconstructed?
Just to be sure, I'll place the links of the threads and posts, that I think might be useful for reference.
You might have already read these threads before.
- How To Change The Splash Screen or Boot Logo In Huawei Honor 7 at post #2
- Scroll down to Part VII - How To Change The Splash Screen
- Solution by Kostyan_nsk
- [HOW TO] Replace initial splash screen (logo) on Huawei P7
- [GUIDE] Changing boot splash image on the Huawei Y6
I will try changing the RGB formats for the image that I'll be editing, to see if it makes a difference.

[GUIDE] How to Change Boot Logo (Splash Screen) for Zenfone 4 Max

Note:
This is not bootanimation, this is the splash screen (the 'Asus' boot logo which is displayed when device is switched ON)
This is for Asus Zenfone 4 Max Only (Snapdragon Variants)..
For other devices, please send me your splash.img so that I can create a tool for you too.
Requirements:
1. Rooted Zenfone 4 Max (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create splash.img:
0. Make sure fastboot is setup in your computer just in-case something gets ducked up
1. Download & Extract this: Asus_Zenfone_4_Max_Splash_Maker.zip
2. Make sure you have a picture with resolution 720x1280 or lower.
3. Now replace your picture on logo1.png and logo2.png inside "pics" folder of the extracted folder.
Note: You can put any picture format, but the names have to be 'logo1', 'logo2', etc.
4. Finally, run the 'CREATE_LOGO.bat' to create splash.img , which you can find inside the "output" folder after completion.
Note:
You might get an error like "PICTURE IS LARGE IN SIZE" if it's not possible to create a logo with that picture.
In that case, try any one of these below:
a. Try compressPNG.com to reduce no. of colors in PNG picture.
Upload your picture, click Settings, reduce number of colors to 2, Apply & download it & try again.
b. Reduce the picture resolution.
For example, this picture:View attachment 4073256 can edited to something like this: View attachment 4073257
(Hope you understand what I say)
c. Try some other picture.
STEPS to flash splash.img:
Optional: To backup your original splash.img:
Code:
dd if=/dev/block/bootdevice/by-name/splash of=/sdcard/splash.img
(Not necessary though.. You may get it from the stock firmware itself.)
Now, Choose any one easy method to install:
a. To flash from recovery:
Transfer the flashable_splash.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the splash.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/splash.img of=/dev/block/bootdevice/by-name/splash
c. To flash from Fastboot mode:
Code:
fastboot flash splash splash.img
Note:
Incase something goes wrong or device doesn't bootup, flash the stock splash.img from custom recovery or fastboot.
Credits:
1. Based on my original tool for Redmi Note 5
2. @Gangster13 who provided the stock splash.img of Asus ZenFone 4 MAX ZC554KL
Hit the Thanks :good: button if it worked for you
You're welcome to post the splash images that you created..
Thank you very much for the tools and instructions! We will try!
will this also work on ZC520KL (Asus ZenFone 4 Max)
GokulNC said:
Note:
This is not bootanimation, this is the splash screen (the 'Asus' boot logo which is displayed when device is switched ON)
This is for Asus Zenfone 4 Max Only (Snapdragon Variants)..
For other devices, please send me your splash.img so that I can create a tool for you too.
Requirements:
1. Rooted Zenfone 4 Max (any ROM)
2. Optional: Terminal Emulator app or Custom Recovery or atleast working fastboot in computer
3. You're proceeding at your own risk.
STEPS to create splash.img:
0. Make sure fastboot is setup in your computer just in-case something gets ducked up
1. Download & Extract this: Asus_Zenfone_4_Max_Splash_Maker.zip
2. Make sure you have a picture with resolution 720x1280 or lower.
3. Now replace your picture on logo1.png and logo2.png inside "pics" folder of the extracted folder.
Note: You can put any picture format, but the names have to be 'logo1', 'logo2', etc.
4. Finally, run the 'CREATE_LOGO.bat' to create splash.img , which you can find inside the "output" folder after completion.
Note:
You might get an error like "PICTURE IS LARGE IN SIZE" if it's not possible to create a logo with that picture.
In that case, try any one of these below:
a. Try compressPNG.com to reduce no. of colors in PNG picture.
Upload your picture, click Settings, reduce number of colors to 2, Apply & download it & try again.
b. Reduce the picture resolution.
For example, this picture:View attachment 4073256 can edited to something like this: View attachment 4073257
(Hope you understand what I say)
c. Try some other picture.
STEPS to flash splash.img:
Optional: To backup your original splash.img:
Code:
dd if=/dev/block/bootdevice/by-name/splash of=/sdcard/splash.img
(Not necessary though.. You may get it from the stock firmware itself.)
Now, Choose any one easy method to install:
a. To flash from recovery:
Transfer the flashable_splash.zip to your device and flash from TWRP or CWM or Philz or any other custom recovery.
b. To flash from Terminal Emulator:
Transfer the splash.img to your device's Internal Storage, Open Terminal Emulator & enter the following to flash it:
Code:
su
dd if=/sdcard/splash.img of=/dev/block/bootdevice/by-name/splash
c. To flash from Fastboot mode:
Code:
fastboot flash splash splash.img
Note:
Incase something goes wrong or device doesn't bootup, flash the stock splash.img from custom recovery or fastboot.
Credits:
1. Based on my original tool for Redmi Note 5
2. @Gangster13 who provided the stock splash.img of Asus ZenFone 4 MAX ZC554KL
Hit the Thanks :good: button if it worked for you
You're welcome to post the splash images that you created..
Click to expand...
Click to collapse
Thank you.
I want to change bootlogo in my device. Can you help me this issue?
My devices is Asus ME181cx Memopad8 k011
can I use this for Asus Zenfone Live L1?
for asus zenfone max pro m1?

Categories

Resources