ANDROID text at LCD with Linux Penguins Logo

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

ANDROID text at LCD with Linux Penguins Logo

跳至解决方案
1,979 次查看
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

标签 (3)
0 项奖励
回复
1 解答
1,558 次查看
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 项奖励
回复
1 回复
1,559 次查看
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 项奖励
回复