ANDROID text at LCD with Linux Penguins Logo

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

ANDROID text at LCD with Linux Penguins Logo

Jump to solution
1,288 Views
leonardoprates
Contributor III

Someone knows how I disable the Text "ANDROID_" show at LCD (with Peguins), just before boot animation gets display control? The penguins I disable, but doesn't know how disable this text message.

Thanks,

Leonardo

Labels (3)
0 Kudos
1 Solution
867 Views
gary_bisson
Senior Contributor III

Hi Leonardo,

This ANDROID text is display by the init process when booting up. You can see the source code here for Marshmallow:

Cross Reference: /system/core/init/init.cpp

Here is the equivalent for KitKat (not sure which version you use):

Cross Reference: /system/core/init/init.c

Here is an example of how you can skip it:

init: allow to skip the ANDROID text at bootup · boundarydevices/android_system_core@b5f0f48 · GitHu...

The above requires to add the following to your init.freescale.rc:

on early-init

    setprop ro.init.skip.text 1

Regards,

Gary

View solution in original post

0 Kudos
1 Reply
868 Views
gary_bisson
Senior Contributor III

Hi Leonardo,

This ANDROID text is display by the init process when booting up. You can see the source code here for Marshmallow:

Cross Reference: /system/core/init/init.cpp

Here is the equivalent for KitKat (not sure which version you use):

Cross Reference: /system/core/init/init.c

Here is an example of how you can skip it:

init: allow to skip the ANDROID text at bootup · boundarydevices/android_system_core@b5f0f48 · GitHu...

The above requires to add the following to your init.freescale.rc:

on early-init

    setprop ro.init.skip.text 1

Regards,

Gary

0 Kudos