I found this somewhere in this forum looking deep for some answers
"By the way, I should have said that Bob advised I should hex edit kernel file
as he has put these two screens in the kernel. Here is what Bob said to me on
freaktab: (It's in the kernel! I had to edit it with a hex editor. It is in RAW
code format. It is not easy to change. If you want to have a go at it, the image
in the kernel starts at 0x1dfac and ends at 0xb1fab – Bob)"
So I removed the first 8 bytes of the kernel.img to change it to kernel.bin using this command
dd if=kernel720.img of=kernel.bin skip=8 bs=1 count=2000000
then I took out the section mentioned above with this command
cat kernel.bin | tail -c +122796 | head -c 606207 > logo.raw
thats where im a bit stumped
I found some references in there like logo_RKlogo_clut
other than that im not sure of what anything is can some one help?
I have attached the logo.raw as a zip
I think that somewhere in the logo.raw must be the rle of the boot logo correct?
I cant find much information about how the data is stored is the a header where does the width height get set etc does someone know where I can find more about the structure?
Comment