On Fri, 2024-06-14 at 07:52 -0300, Fabio Estevam wrote: > Hi Jonas, > > On Fri, Jun 14, 2024 at 7:49 AM Jonas Kvinge <jona...@opensuse.org> > wrote: > > > Where do I find CONFIG_EXTRA_ENV_SETTINGS? Is it an option in make > > menuconfig, or do I need to edit the header file > > include/configs/rpi.h? > > In recent U-Boot versions, this option has been renamed to > CFG_EXTRA_ENV_SETTINGS. > > It is located at include/configs/<board>.h >
Thanks, that was helpful. I finally was able to silence the boot text by adding the following in include/configs/rpi.h: #define CFG_EXTRA_ENV_SETTINGS "silent=y\0" The u-boot logo in the upper right corner is still showing, is it possible to disable that too? Jonas