Kernel splash screen , disable kernel messages on splash screen

My platform IRIS 2.0 + IMX8X + LVDS display

I have in kernel CONFIG_LOGO_CUSTOM_CLUT224 and my custom logo_custom_clut224.ppm

Dooring boot I see my splash screen but on bottom screen I see few lines with kernel messages

How to disable kernel messages on splash screen

Hi @MariusM ,

You could try setenv bootargs quiet in u-boot. For further information please refer the information in: https://www.kernel.org/doc/html/v4.14/admin-guide/kernel-parameters.html

Or, Please kindly refer to the following developer article that gives an insight into how to silence the U-boot and kernel messages:
https://developer.toradex.com/knowledge-base/how-to-disable-enable-debug-messages-in-linux#disable-u-boot-console-output-on-uarta

Let me know if this changes the behaviour.

Best Regards
Kevin

Thank you kevin.tx

setenv bootargs quiet it did not help

based on the second link
under u-boot:

# setenv tdxargs 'console=null'
# saveenv

or under linux:

# fw_setenv tdxargs 'console=null'
# reboot

it solved the problem

1 Like