This package includes everything you will need to create an XXKPS based Odin flashable (one package) ROM.
- TUTORIALS -
The making of an odin rom, by nikagl
Additional information on partitions, by broodplank1337
How to Deodex i9001, by kkrraazzyy
Make your own ROM & KERNEL, by sakindia123
Easy ROOT/UNROOT from Recovery Mode, by KeksKlip
Installing CWM Recovery v. 5.0.2.7. based FeaMod Recovery, by manveru0
Flashing Roms with odin, step by step, by mikeeo019
dsixda's Android Kitchen how to, by oisis
- TOOLS -
QtADB (AndroidManager for Linux, Windows and MacOS), by 7ymekk
dsixda's Android Kitchen, by dsixda
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
- Content of the package -
- Download -
http://www.multiupload.com/U3GGFXJ6D6
or
http://broodplank.net/files/Basic_Odin_Rom_Sources.rar
File size: 568MB
broodplank1337 said:
This package includes everything you will need to create an XXKPS based Odin flashable (one package) ROM. Tutorials and howto's can be find on the main i9001 page.
- Content of the package -
- Download -
http://www.multiupload.com/U3GGFXJ6D6
or
http://broodplank.net/files/Basic_Odin_Rom_Sources.rar
File size: 568MB
Click to expand...
Click to collapse
basically all those files that u collected are out there and with minimal search people could find them. But since u decided to get everything in one place u could've also added a tutorial (instead of saying there are tutorials out there), at least basic stuff, like u need JDK for cygwin, and u need the customized cygwin for the kitchen, speaking of kitchens, where is it ? . also we already have a few tutorials on how to compile odin flashables, u could've at least linked those tutorials to make things easier for the public that u're addressing with this group of files.
rayiskon said:
basically all those files that u collected are out there and with minimal search people could find them. But since u decided to get everything in one place u could've also added a tutorial (instead of saying there are tutorials out there), at least basic stuff, like u need JDK for cygwin, and u need the customized cygwin for the kitchen, speaking of kitchens, where is it ? . also we already have a few tutorials on how to compile odin flashables, u could've at least linked those tutorials to make things easier for the public that u're addressing with this group of files.
Click to expand...
Click to collapse
Will work on it and o damn I forgot kitchen :X
edit: added some tutorials
broodplank1337 said:
Will work on it and o damn I forgot kitchen :X
Click to expand...
Click to collapse
u can also add a link to this lil tool called QtADB , i think it's underrated in this section, haven't read that anybody mentioned it , while i used to use it quite a lot during the desire days, it allows u to do simple adb stuff (push/pull) especially some files that u can't overwrite using rootexplorer while the phone is running, u can perform many tasks in recovery and fastboot, etc.. really helpful and noob friendly for example it's easier to extract the rom files (system folder for example) directly to ur pc using this tool than using root explorer and copying it to ur sd card as it is mentioned in the "make ur own rom" thread
rayiskon said:
u can also add a link to this lil tool called QtADB , i think it's underrated in this section, haven't read that anybody mentioned it , while i used to use it quite a lot during the desire days, it allows u to do simple adb stuff (push/pull) especially some files that u can't overwrite using rootexplorer while the phone is running, u can perform many tasks in recovery and fastboot, etc.. really helpful and noob friendly for example it's easier to extract the rom files (system folder for example) directly to ur pc using this tool than using root explorer and copying it to ur sd card as it is mentioned in the "make ur own rom" thread
Click to expand...
Click to collapse
Nice, I'll add this to the list, if i have some more apps ill repack it and reupload
Good topic!
Related
Hey all.
Have been doing Android dev for a short time, but Windows dev for a while.
I wrote myself two little .bat (batch) files for making a couple things quicker for me. These are crude little batches, nothing complicated here.
The first is LogcatBat, which is a little batch file for viewing logcat on your PC using the ADB binaries.
The second is ShellBat, which opens up an Android shell terminal on your PC connected to your phone through ADB as well.
Now, as stated before, THESE FILES ARE CRUDE. There isn't any support for them, and if you use them you do so at your OWN RISK. This is pretty simple stuff, but it can be used for HARM IF YOU'RE STUPID...
...So, don't be.
Now, you have to right click and save these files as .bat files - just clicking the links will generate the text of the batch commands. Also keep in mind these two files assume that your android directory is at C:\android-sdk-windows\tools. If they are not, email me, and tell me the location of your ADB folder so I can remake the file for you. Or, you can edit them yourself (this is Open Source, of course :wink:.
LogcatBat
ShellBat
My email: [email protected]
Well I guess that it will help a handful of noobs out there.
Most of the script (I'd say about 98%) is ascii art.
LOL I had to throw in a little "sumpin' sumpin'" more than what I used it for daily.
And it's TARGETED towards noobs, because I am one myself.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Also, those who download this PLEASE comment/reply to this to let me know how you like, dislike, or just what's up!
You might include instructions for customizing the directory structure, ex mine is c:\android and I have modded my path var to include the location of adb and fastboot.
Sorry, I should have continued reading. Still instructions and maybe how to set up path might be useful.
Cool to see more batch scripts, i love em as u can tell from my signature. They're so simple yet so powerful. Heres a tip to improve em, u can use errorlevel's to check if adb is in the $path. If its not in the path u cud perhaps ask for user-input to the directory where his/her sdk directory is and "cd" to that before executing commands.
Let me know if u need any help, im no pro but ive been working with them for a while now. Refer to my apk manager script, the top few lines are where i check if java/adb are installed on ur system.
Daneshm90 said:
Let me know if u need any help, im no pro but ive been working with them for a while now. Refer to my apk manager script, the top few lines are where i check if java/adb are installed on ur system.
Click to expand...
Click to collapse
Would you possibly wanna work with me on these? I mean, for my own end I don't care how they are, but if we could provide an actually nice work product that would be really cool!
mooch777 said:
Would you possibly wanna work with me on these? I mean, for my own end I don't care how they are, but if we could provide an actually nice work product that would be really cool!
Click to expand...
Click to collapse
Well i already include anything i can think of to apk manager. But if u propose an awesome idea that doesnt already exist, then yea for sure. Otherwise my help offer still exists.
Daneshm90 said:
Well i already include anything i can think of to apk manager. But if u propose an awesome idea that doesnt already exist, then yea for sure. Otherwise my help offer still exists.
Click to expand...
Click to collapse
Actually I used your script and found that I don't have Java installed. But when I installed the latest 1.6 JDK, they still can't detect it! May I know why?
JokerAce said:
Actually I used your script and found that I don't have Java installed. But when I installed the latest 1.6 JDK, they still can't detect it! May I know why?
Click to expand...
Click to collapse
If u can go to command prompt and type
java -version
if u see command not found, then java is not in ur path. If u do find it however, im intrigued as to why apk manager is complaining, in any case ignore the complaint.
Fyi, redirect any issues to its thread on the g1 forums, i dont wanna hijack this thread/easier to manage 1 thread instead of 2.
hi friends,
i have a big problem with my pc,
i have tried many zipping softwares but every time i want to install .zip files from the recovery it shows:"installation aborted"!
it's really bad for me because i should zip folders with my phone! & sometimes i can't...
can you help me pls?
You are not making things clear?!!
firstly,your PC can't zip files or your phone?
and what has zipping softwares gotta do with your phone's recovery???
you can't just zip any folder and apply it your recovery!
if you are having issues with recovery, follow this guide and install latest recovery.
if you have issue with zipping software in PC check you antivrus first..maybe it isn't allowing you to create .zip/.rar
Or just make a virtual machine on pc and zip your folders if you don't want to re-install the whole OS again.
Harryhades said:
You are not making things clear?!!
firstly,your PC can't zip files or your phone?
and what has zipping softwares gotta do with your phone's recovery???
you can't just zip any folder and apply it your recovery!
if you are having issues with recovery, follow this guide and install latest recovery.
if you have issue with zipping software in PC check you antivrus first..maybe it isn't allowing you to create .zip/.rar
Or just make a virtual machine on pc and zip your folders if you don't want to re-install the whole OS again.
Click to expand...
Click to collapse
Thx
I can zip any folders in my pc,but always recovery writes:"installation aborted" , it's because of my pc not my phone because i have flashed over 50 roms till now.
I have tested with windows7 & xp but problem is still there.
And it's for everything if i extract any rom for example a then i zip i will get this error too.
Thx for your help
***
torbatepak said:
Thx
I can zip any folders in my pc,but always recovery writes:"installation aborted" , it's because of my pc not my phone because i have flashed over 50 roms till now.
I have tested with windows7 & xp but problem is still there.
And it's for everything if i extract any rom for example a then i zip i will get this error too.
Thx for your help
***
Click to expand...
Click to collapse
A zip file has to be "flashable" for it to successfully install anything to your phone through recovery (with an update script, etc, etc).
Also, English only please.
TeeJay3800 said:
A zip file has to be "flashable" for it to successfully install anything to your phone through recovery (with an update script, etc, etc).
Also, English only please.
Click to expand...
Click to collapse
it has them all
& that was meant : "sent from tapatalk2 using GT-S5670 "
but sorry for this.
i have tested.if i just extract the rom & zip it myself i will get this error.
What compression method do you choose?
- Via xda premium
a.cid said:
What compression method do you choose?
- Via xda premium
Click to expand...
Click to collapse
i have tried , this time it worked with deflate compressation method via 7zip, storing without compressing via 7zip,zipping using windows, & store by winrar.
it is strange!
but it didn't work by bzip2,deflate64, lzma & ppmd methods.
i should try with something else too.
thx
& also if i just decompile an apk file & then compile it without any changes,then it won't work!:crying:
try 7-zip 7-zip.org or use xplore app for android https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore&hl=en to dicomplie or make flashable zip this app is working great for me.
Sent from my GT-S5360 using xda premium
Harryhades said:
You are not making things clear?!!
firstly,your PC can't zip files or your phone?
and what has zipping softwares gotta do with your phone's recovery???
you can't just zip any folder and apply it your recovery!
if you are having issues with recovery, follow this guide and install latest recovery.
if you have issue with zipping software in PC check you antivrus first..maybe it isn't allowing you to create .zip/.rar
Or just make a virtual machine on pc and zip your folders if you don't want to re-install the whole OS again.
Click to expand...
Click to collapse
I installed another windows but the problem is still there!
no help?
really confused...
With WinRAR:
Mark files for zip. The right click on it.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
With 7Zip:
Hello Guys,
@android.zealot.fervor wanted me to post this guide so why not
There is already a guide by Panda00 but that one is a bit outdated...
Requirments:
- A Windows PC
- Zip opener (7zip,winrar,winzip)
- Dsixda's kitchen and cygwin
- sgs2ext4.jar
- linux reader
- A Brain and hands
So let's begin:
Step 1)
- Download the stock firmware from sammobile samsung-updates search for yourself and open the file with 7zip inside the file you will find a md5 file open that with 7zip it should give you a error ignore that! Take out the system.img and open up sgs2ext4.jar and drop the system.img into there now after some time the system.img.ext4 will be placed onto your desktop!
Step 2)
- Open up Linux Reader and mount the system.img.ext4 drive open it up and take out only the app and framework folder save them to your desktop!
Step 3)
- Now make a WORKING_DEODEX folder name it exact as i say you and make inside that folder a system folder! drop the app&framework folder in the system folder and copy WORKING_DEODEX to C:/kitchen or where ever you have kitchen on your PC!
Step 4)
- Open up kitchen with cygwin by typing in the following:
cd C:/kitchen and hit Enter! (I take the C drive as example but your drive letter could be diffrent!!!)
sh menu Hit Enter again!
Now it should load up kitchen if not do not ask me!
go in kitchen to advanced options by typing in 0 and after that go to 11 now select the correct api version it should be 17!
Now type in b for deodexing both folders! let kitchen do his work here this can take up to 20min!!!
Step 5)
When kitchen is done go back to your C:/kitchen drive and take out the system folder of the WORKING_DEODEX and drop it onto your desktop!
What you need to do now is download the zip file from the attachments and drop the system folder in it!
Step 6)
Copy the zip to your device and flash enjoy your deodexed phone!
Credits:
Panda00 for his zip file
CoolDevelopment for his CWM
Some things you need to know:
1) secemail_j will not deodex!!!
2) you must be on the firmware you are deodexing!
3) Install custom recovery for flashing
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
android.zealot.fervor said:
Click to expand...
Click to collapse
Thanks man if you want more guide's etc just ask
safariking said:
Thanks man if you want more guide's etc just ask
Click to expand...
Click to collapse
Thanks a lot. That's so generous of you. Well i just want to ask right now....in your guide i couldn't found the ZipAlligning step.Is zipalligning necessay after deodexing. Thanks
android.zealot.fervor said:
Thanks a lot. That's so generous of you. Well i just want to ask right now....in your guide i couldn't found the ZipAlligning step.Is zipalligning necessay after deodexing. Thanks
Click to expand...
Click to collapse
not needed to zipalign btw: new link for deodex xxbml1
safariking said:
not needed to zipalign btw: new link for deodex xxbml1
Click to expand...
Click to collapse
Thanks.....well i already fixed the update-script and it worked.
Thanks once again for your efforts.
I have searched a lot, but couldn't find any post like this. So I thought I would post it here. This is NOT purely my work, and I do not take credit for it as such .
NO NEED ANDROID KITCHEN FOR UNPACK REPACK IMG's
This is the easiest way to unpack .img files with extracted ramdisk. So, Lets Start
At first Download the tool from HERE
For MTK (chineese) phones - use MTK_unpack.bat (MTK_pack.bat)
For android standard phones - use STD_unpack.bat (STD_pack.bat)
Here I am showing you about MTK (chineese) phones .img unpack-repack....
Instructions
1. Extract the file in any where you want
2. You will see this files
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
3. Then Copy your .img file in this folder like this
Remember the file should be named as boot.img or recovery.img
4. Just Drag and Drop .img files into unpack.bat for unpacking. Then you will see this.
5. A folder will be created there. I unpacked boot.img so here is the all file you want
6. To repack, again just drag and drop the folder into pack.bat. you will see this
7. New .img file created. Rename it as you want. So All done. Enjoy.
[ NOTE: It's Only for Windows]
Thanks to
Michfood for making this tool
DON'T FORGET TO HIT THANKS IF I HELPED YOU
NO NEED TO DONATE ME, JUST SAY THANKS TO ENCOURAGE ME
Thanks for this awesome guide
Thanks bro for this awesome guide and Tool
I will so much try...... but I don't success bcoz ramdisk folder empty.....
I will so much try...... but I don't success bcoz ramdisk folder empty.....
try with patience
A.S.Noman Khan said:
I will so much try...... but I don't success bcoz ramdisk folder empty.....
Click to expand...
Click to collapse
do it carefully bro.. this tool extract ramdisk nicely bro
problem
Bro, when I am going to repack my boot.img, its not repacking correctly. Help me out. Please.
golam1962 said:
Bro, when I am going to repack my boot.img, its not repacking correctly. Help me out. Please.
Click to expand...
Click to collapse
did u deleted something? Make sure that your boot.img has all the files what needed.
check
I will just check. By the way, thanks again for this.
golam1962 said:
I will just check. By the way, thanks again for this.
Click to expand...
Click to collapse
Ok. I will wait. And don't thank me. Thank the main dev MICHFOOD who created this tool
Succeeded
aalakib07 said:
Ok. I will wait. And don't thank me. Thank the main dev MICHFOOD who created this tool
Click to expand...
Click to collapse
it worked bro thanks
My device is LG GX F310, original boot.img 24MB, https://docs.google.com/file/d/0Bx0NlR3rjLYeUS14YmxESGc3bWc/edit?usp=docslist_api after unpacked and repacked new boot.img only has 11MB. And can't boot into system. Could you help me?
Work with MT6752?
this tool isn't working under Windows 10, that unpack all files except "rmdisk" folder.
the rmdisk is empty...
I tried to use this tool to unpack the lienageOS recovery ROM from https://wiki.lineageos.org/devices/s5neolte/install
When I change the name and drag it to unpack it, it doesn't work and I get these error messages.
'chcp' is not recognized as an internal or external command,operable program o - Pastebin.com
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
pastebin.com
Am I doing something obvious wrong?
I tried it for my stock boot.img(Mi 11 lite 5g NE-Snapdragon 778G) and the unpacked items didn't satisfy me. Looks like it isn't for snapdragon chipset. BTW I'm looking for similar tool to extract kernel from boot.img of this device.Thnaks though for uploading the tool.
Sooo... I personally wanted to change my boot logo.bin just like i did on my 1+1 and moto-x 2014
i typed around searching and reading for the tools and commands and some sample images to use im my tests
WARNINGS/Disclaimers & Responsibilities
If YOU choose to follow this tutorial, YOU & ONLY YOU are held responsible for any mistakes here on out..
if following the commands and screenies are followed step by step and correctly, you should not have a fail at all, ive now done this to my personal device 6 or 7 times without fail..
My device is ROOTED, Yours should be as well with twrp installed, like a typical tweaker/flashaholic
i DIDNT make a backup because i trust enough in my skills and knowledge to NOT always make a mistake,
when i do make a mistake without a backup i suffer, YOU are responsible for making your own backups if wanted...
the LOGO partition is 16mb in size according to this programs root access information, plenty of play space
https://play.google.com/store/apps/details?id=me.kuder.diskinfo&hl=en
DiskInfo Screenshot Sample
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I personally used the original OnePlus drivers that the phone has the built in installer for,
Minimal ADB and Fastboot installer from @shimp208 HERE,
the above mentioned DiskInfo app, and logoInjector.exe from HERE
and believe it or not, MS-Paint & patience
PLUS... most of all, Lots of READING and RESEARCH,
HOW TO
So you want to do this i guess then eh?!
well, lets get on it then
first of all, download and extract to your desired area the op2logoInjector.zip package linked to HERE
Open said *.zip and look at each of the .png's included to decide which you want to edit,
edit them in your preferred image editor to your liking, PLEASE reserve the ORIGINAL filename structure
Once you've finished the edits, simply run the op2logoinjection.bat to inject the files back into the logo.bin
when program finishes, it will produce a file called "modified.logo.bin", take the original "logo.bin" file and rename it to "logo.bin.orig"
take that "modified.logo.bin" file just created and rename it to " logo.bin ",
then proceed to execute the "ADB_Reboot.bat" file to reboot into fastboot mode ** MUST HAVE ADB DEBUGGING ENABLED **
once in fastboot, then proceed to execute the "FastBoot_LOGO_FLASH.bin" to flash your modified logo.bin
if succesful then execute the "Reboot_Device.bat"
Here is a sample of my custom edited logo.bin contents
CREDITS & Thanks
i give ALL credits to the original content owners below, and me for the edits and batch file and testing on personal device..
@makers_mark for the logoInjector.exe and commands,
@oneplus for the device itself and logo.bin and most of image content used,
@shimp208 for the Minimal ADB and FastBoot Installer
AND anyone else whos content i may have used and forgotten to mention, my apologies, please let me know if so!
PLEASE do let me know if there is something i can add or streamline in this process
and DO feel free to share your custom edits here if you like so we can amass a gathering and localize the OP2 logo editing here
reserved #1
Going to be adding some pre-made by me custom logo.bin's here for others to try if they like
Stay Tuned!
RESERVED #2 just in case
Maybe a MOD could possibly STICKY this ??
so it would help all who wish to customize there boot logo's
Isn't this already existed here and I guess @makers_mark is the main author.. Please give proper credits.
Pardon me if I missed any of such credits.
nicesoni_ash said:
Isn't this already existed here and I guess @makers_mark is the main author.. Please give proper credits.
Pardon me if I missed any of such credits.
Click to expand...
Click to collapse
Credits are there to @makers_mark, and permission already granted to use the tool
and yes that @makers_mark has a thread regarding the tool and how to use it,
but there is alot of stuff not explained clearly for some to go ahead and flash stuff like this,
this hopes to help minimize the risk and maximize the experience of customizing your device to your liking easily..
hence the batch scripts and tools and samples all included in a single file double hosted so that others such as myself,
can easily find this thread if interested in modifying ones boot logo's.. is that a fair explanation as to why i posted this ?
Sure mate, I have no issue in an identical but a more thorough and helpful thread. I guess your explanation is enough and if you have the permission from the author itself then all is great in every universe.. Cheers..
No worries, and thanks for the care to make sure a thread is valid and credited properly
good forum etiquette
OP has been edited to clean the code in the credits section so its more clear in the drop down.
* also, the MAIN reason of tutorial post, seeing as the forums for this device dont seem to pertain all this info for
the specific task at hand(boot logo edits) and are fairly new with dev's and contributors, or progress is slow in the forums,
then i feel like id like to provide some of my help
here's my custom boot logo for my op2
My apologies for the delay in bringing out some zips, just switched to a new dell i5 latitude with Linux mint 64bit, getting it all setup and getting used to it..
Finally.. Some progress, my first switch to Linux..
Here's my custom Boot logo
shreyas.kukde said:
Here's my custom Boot logo
Click to expand...
Click to collapse
I loved the shining silver look, mind sharing the psd?
Sent from my "GT-I9300/OP2" powered by Carbon Rom/Blisspop & Boeffla/ak Kernel
Fueled by 7000mAh ZeroLemon Battery
Gets Stuck
So, i did everything and followed the steps perfectly, but when I enter fastboot mode, the programm that is supossed to inject the logo.bin gets stuck and just says waiting for device, any suggestions?
Thanks for the guide, it looks pretty helpful for anyone who wants to do it, as soon as I saw the tools and the name of the partition I skipped the guide since everything else simply already became obvious to me without having to read. I didn't know that nowadays the logos have their own separate partition, back in my days the kernel had them incorporated.
Might make some flashable zips :^).
Sent from my ONE A2003 using Tapatalk
Thanks, here is my custom logo.bin.
http://imgur.com/a/owjU5
One more suggestion to the op. I guess it's better to add in the OP on android version this work and on which this doesn't so no one breaks their devices. I hard bricked my 1+1 once.
Hey !
Thanks man, it worked !
I'm on OOS 3.5.6 !
Here's the one I created.