-
The device is based on Jetson AGX Xavier. I need to hide any stuff that can help to identify the OS for kiosk device. I've already replaced nvidia logo with the custom one. Now trying to get rid of any messages on the screen during boot.
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Try |
Beta Was this translation helpful? Give feedback.
-
@madisongh thanks a lot - your solution perfectly solves my needs. One more question - how can I override this setting in my distro not to touch anything in "meta-mender"? |
Beta Was this translation helpful? Give feedback.
-
Adding the following to your distro configuration file should take care of it:
|
Beta Was this translation helpful? Give feedback.
Try
KERNEL_ARGS ?= "console=ttyTCU0,115200 fbcon=map:0 quiet"
. That will direct the kernel messages to the serial console, rather than the video display; adding thequiet
parameter reduces the amount of logging the kernel does (and systemd, too). The U-boot setting isn't needed, since you're not likely to be using U-Boot in your builds.