I can't get terminal to work, it says device not found when i run adb rootand i get an error by running adb "adbd cannot run as root in production builds"
Same on a s6?
I have flashed this zip twice still nothing same stock splash. I have a sprint galaxy 6 edge on 5.1.1 rooted stock rom
I have a s6edge 925f,modem 5.1.1.Same on a s6?
I am flashing the custom spash screenI have flashed this zip twice still nothing same stock splash. I have a sprint galaxy 6 edge on 5.1.1 rooted stock rom
So you used twrp to flash the custom spash?I have a s6edge 925f,modem 5.1.1.
Did you flash only "custom boot"? Then reboot.I have flashed this zip twice still nothing same stock splash. I have a sprint galaxy 6 edge on 5.1.1 rooted stock rom
YesDid you flash only "custom boot"? Then reboot.
YesI am flashing the custom spash screen
---------- Post added at 12:07 AM ---------- Previous post was at 12:05 AM ----------
So you used twrp to flash the custom spash?
? Do not understandPerhaps its because of pit partition sda4 size ...
Yes twrpI am flashing the custom spash screen
---------- Post added at 12:07 AM ---------- Previous post was at 12:05 AM ----------
So you used twrp to flash the custom spash?
Hi, if i remenber its in boot loader, i'm on BOGE...Yes
---------- Post added at 12:22 AM ---------- Previous post was at 12:19 AM ----------
? Do not understand
Im on b0f7 5.1.1 using twrp to flash zip folder will not flashHi, if i remenber its in boot loader, i'm on BOGE...
I ll try tonight to extract pit with BOGE then flash OH2, EXTRACT again then compare file size.Im on b0f7 5.1.1 using twrp to flash zip folder will not flash
Typically users beat me to the punch on things such as this. But no one has yet to do so, so here it is.
How to extract your param partition:
Now that your param partition has been dumped you can copy it off the device as I do to work with it. Untar it with this command on linux:Code:It's located in /dev/block/sda4. On device terminal or in adb terminal as root run, dd if=/dev/block/sda4 of=/sdcard/param.bin bs=4096
Once its untared to the param directory, you will see the contents. logo.jpg being the file you wish to change.Code:mkdir /param cd param tar xf /path/to/param.bin
Once you have found/made a proper logo/splash in the proper resolution of 1440x2560 copy it to the param folder overwriting the old logo.jpg, and run this command in the param folder to pack it back up:
NOTE: The param partition has limited space, so keep this in mind. I have successfully used a 400kb jpeg with out issues. I wouldn't go much more then that.Code:tar cf - `ls | sort -t.` > /path/to/where/you/want/to/save/param.bin
Place the param.bin back on your sdcard and run the following to flash it:
Reboot and enjoy.Code:dd if=/sdcard/param.bin of=/dev/block/sda4 bs=4096
Users wishing to deploy all these commands on device (if you don't run linux) here is a script I made, tested and working to do so. Place files on device accordingly.
Attached you will find a flashable zip of a custom boot screen i made. You're all welcome to use. As well as the Stock param.bin in case users wish to go back. And the image I made for the custom boot splash I'm attaching.Code:#!/sbin/busybox sh # Extracting param partition dd if=/dev/block/sda4 of=/sdcard/param.bin bs=4096 mkdir /sdcard/param cd /sdcard/param tar xf /sdcard/param.bin # Replaceing logo.jpg, repacking and writing back to device cp -f /sdcard/logo.jpg /sdcard/param/logo.jpg rm -f /sdcard/param.bin tar cf - `ls | sort -t.` > /sdcard/param.bin dd if=/sdcard/param.bin of=/dev/block/sda4 bs=4096