wusi524888 / openeve

Automatically exported from code.google.com/p/openeve
0 stars 0 forks source link

"OpenEVE" new boot splash logo? #107

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I've seen a lot people trying to replace this and I think it's not one of the 
most beautiful, so Wkpark, if you think it's a good idea, people might upload 
their suggestions here.

My suggestion is to take the Openetna animation and change "tna" to "ve"
or just leave it as it is because Openeve is "the younger brother" of Openetna. 
:)

Original issue reported on code.google.com by omarbeko...@gmail.com on 17 May 2011 at 3:26

Attachments:

GoogleCodeExporter commented 8 years ago
the boot animation is issuer/publisher/developer choice and "copy right" 
related.. so..change the boot animation as you want in your phone .not on 
others.

Original comment by justsad.eng@gmail.com on 17 May 2011 at 7:11

GoogleCodeExporter commented 8 years ago
Can you tell me how?

And it's just a suggestion, I said if wkpark liked this idea, people could 
upload their's here , and the he would make his choice... 
I was not going to change it somehow on other phones - the decision is wkpark's.

Original comment by omarbeko...@gmail.com on 17 May 2011 at 7:31

GoogleCodeExporter commented 8 years ago
isn't it possible to change it yourself. I would love to choose my own splash 
screen. Isn't there a way to do this?

Original comment by amaury.l...@gmail.com on 17 May 2011 at 8:39

GoogleCodeExporter commented 8 years ago
justsad , I think what I mean omarbeko is that the "OpenEVE" on the boot 
animation is  not very beautiful at all for many users under OpenEVE, there 
isn't a bad review for WKP who did a great job =D it's just that the "OpenEVE" 
startup does not appeal to many users, so I think it would be better to agree 
with the community to find something that appeals to a more community as it is 
done on openetna. :) Or give way to change it ourselves;)

Original comment by s2ad...@gmail.com on 18 May 2011 at 1:17

GoogleCodeExporter commented 8 years ago
I can say that is a deceptive facade, the original animation can not 
discriminate WKP wonderful work, however, it is true that animation has not 
pleased many, I for example, I like the default animation LG

Original comment by jiacontr...@gmail.com on 18 May 2011 at 3:05

GoogleCodeExporter commented 8 years ago
@jiacontr // this is unofficial custom firmware so we can't use LG official 
logo into boot.img.

----
anyway, you don't have to argue on this. just attach your proposal img.
and remember that you have to use freely available font(GPL,OFL ..)
and i can't use the initlogo.png of OpenEtna since it's font is not known for 
me.

all fonts used by logo must be freely avaiable fonts. this is basic condition 
for initlogo.png.

Original comment by wkp...@gmail.com on 18 May 2011 at 3:27

GoogleCodeExporter commented 8 years ago
this is new boot img will be included into the next boot.img

 * font : Nanum font (OFL license)

Original comment by wkp...@gmail.com on 21 May 2011 at 5:32

Attachments:

GoogleCodeExporter commented 8 years ago
nice work

Original comment by martij...@gmail.com on 21 May 2011 at 9:23

GoogleCodeExporter commented 8 years ago
Hey wkpark, when will a new boot.img be released that includes this splash 
screen and how do I flash it right now? Thanks.

Original comment by kura...@gmail.com on 29 May 2011 at 10:59

GoogleCodeExporter commented 8 years ago
how can i change boot animation?

Original comment by gianvo...@gmail.com on 10 Jun 2011 at 12:41

GoogleCodeExporter commented 8 years ago
To change the boot animation just download one and rename it to 
bootanimation.zip then transfer it with this command adb push bootanimation.zip 
/data/local

Original comment by amaury.l...@gmail.com on 10 Jun 2011 at 9:18

GoogleCodeExporter commented 8 years ago
How can you change the splash screen?

Original comment by kura...@gmail.com on 10 Jun 2011 at 10:14

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
ok, now i want to change the splash screen, but "fastboot flash splash1 
[namefile]" doesn't work. How can i do?

Original comment by gianvo...@gmail.com on 11 Jun 2011 at 2:21

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
you cannot change it with this method. you have to change the initlogo.rlc in 
boot.img then reflash your boot.img. This can brick your phone so if you don't 
know what you're doing, stay off of it ;) btw You'll need Ubuntu

Original comment by amaury.l...@gmail.com on 11 Jun 2011 at 4:20

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
ok, i've changed initlogo.rle in boot.img, it was hard but now i have my custom 
splash!

Original comment by gianvo...@gmail.com on 12 Jun 2011 at 3:48

GoogleCodeExporter commented 8 years ago
Hi, is the boot.img with the black openeve splash available somewhere? I 
currently have the GB2.3.4 CM7 CHS0+ installed. Thanks a lot for your work, 
brings new live to the GW620/Eve :)

Original comment by garfiel...@gmail.com on 27 Aug 2011 at 4:58

GoogleCodeExporter commented 8 years ago

Original comment by wkp...@gmail.com on 6 Sep 2011 at 11:03

GoogleCodeExporter commented 8 years ago

Original comment by wkp...@gmail.com on 18 Sep 2011 at 12:43

GoogleCodeExporter commented 8 years ago
I've compiled "mkbootfs.exe" "mkbootimg.exe" and "unpackbootimg.exe" found in 
the source code of Android.
these are WIN32 native binaries. so you can easily(?) insert your *.rle boot 
logo into your boot.img

== Cavities ==
 - mkbootfs.exe does not support symbolic links. so you have to use slightly modified ramdisk.

== how to modify your ramdisk. ==
 - extract ramdisk (mkdir my-new; cd my-new; ..\gunzip -dc ramdisk.gz | ..\cpio -i )
 - remove my-new/sbin/ueventd
 - fix my-new/init.rc like as following
------X--------X------
on early-init
    # add this line
    symlink /init /sbin/ueventd
    # end
    start ueventd
....
------X--------X------
 - replace initlogo.rle ... etc.
 - repack with the "mkbootfs.exe" : mkbootfs.exe my-new | gzip -9v > ramdisk-new.gz

== make your own boot.img ==
mkbootimg --cmdline "no_console_suspend=1 console=/dev/null" --kernel my-kernel 
--ramdisk ramdisk-new.gz

(kernel can be obtained by "unpackbootimg.exe")
== included files ==
 -gunzip.exe, gzip.exe
 - initlogo.rle : Please see comment #7
 - cpio.exe + libiconv2.dll + libintl3.dll
 - mkbootfs.exe, mkbootimg.exe, unpackbootimg.exe

See also
 - http://android-dls.com/wiki/index.php?title=HOWTO:_Unpack%2C_Edit%2C_and_Re-Pack_Boot_Images

Original comment by wkp...@gmail.com on 18 Sep 2011 at 3:00

GoogleCodeExporter commented 8 years ago
oops! this is the win32 tools for DIY boot.img

Original comment by wkp...@gmail.com on 18 Sep 2011 at 3:02

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by wkp...@gmail.com on 18 Sep 2011 at 11:53

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
do you mean the Original LG boot splash animation ?

official LG boot splash is somewhat different.
it consist several *.rle images with modified /sbin/init. and /sbin/bootlogo 
bin.
but i don't think it is really needed

Original comment by wkp...@gmail.com on 11 Oct 2011 at 3:37

GoogleCodeExporter commented 8 years ago
yes

Original comment by rj1314...@gmail.com on 11 Oct 2011 at 4:59

GoogleCodeExporter commented 8 years ago
nice logo :)

Original comment by migaxmoi...@gmail.com on 11 Oct 2011 at 7:48

GoogleCodeExporter commented 8 years ago
If you have made the official I believe we would be very grateful to you, or 
the two schemes is given."""

Original comment by rj1314...@gmail.com on 15 Oct 2011 at 3:45

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
这个不错

Original comment by rj1314...@gmail.com on 15 Oct 2011 at 4:47

Attachments: