I have this system accessed by the Debug serial port. I want to disable all the output that was made during the boot of U-Boot. Therefore there is
setenv silent 1
which I insert in the line BOOTCMD, for example:
#define CONFIG_BOOTCOMMAND "setenv silent 1;" \
"bootm"
and exists
#define CONFIG_SILENT_CONSOLE
none of them work (the printed lines are the same, and the loading time has not changed). Does anyone see a mistake?
source
share