Hide Booting Log from RPi development Image

We see tons of log messages during the boot time of the development image.

I was able to disable these messages by editing /boot/cmdline.txt file:

  • Replaced console=tty1 with console=tty3
  • Added loglevel=3 vt.global_cursor_default=0

But I am still seeing “Booted, check balena Cloud XXX” message on the screen.

Is there any way to disable this message as well?

Hi Shane, it looks like that comes from the resin-info service, as defined here: https://github.com/balena-os/meta-balena-distro/blob/master/meta-balena-common/recipes-support/resin-info/resin-info/resin-info

And it appears to be a service, so, you can try stopping or disabling the service:
https://github.com/balena-os/meta-balena-distro/blob/master/meta-balena-common/recipes-support/resin-info/resin-info/resin-info@.service

Try to run systemctl stop resin-info and reboot, let’s see what happens.