Blame view

doc/README.silent 1.29 KB
f72da3406   wdenk   Added config opti...
1
2
  The config option CONFIG_SILENT_CONSOLE can be used to quiet messages
  on the console.  If the option has been enabled, the output can be
e080d545f   Joe Hershberger   env: Add a silent...
3
4
5
6
7
8
9
10
11
12
  silenced by setting the environment variable "silent".
  
  - CONFIG_SILENT_CONSOLE_UPDATE_ON_SET
  	When the "silent" variable is changed with env set, the change
  	will take effect immediately.
  
  - CONFIG_SILENT_CONSOLE_UPDATE_ON_RELOC
  	Some environments are not available until relocation (e.g. NAND)
  	so this will make the value in the flash env take effect at
  	relocation.
f72da3406   wdenk   Added config opti...
13
14
15
16
17
  
  The following actions are taken if "silent" is set at boot time:
  
   - Until the console devices have been initialized, output has to be
     suppressed by testing for the flag "GD_FLG_SILENT" in "gd->flags".
f72da3406   wdenk   Added config opti...
18
19
20
21
  
   - When the console devices have been initialized, "stdout" and
     "stderr" are set to "nulldev", so subsequent messages are
     suppressed automatically. Make sure to enable "nulldev" by
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
22
     #defining CONFIG_SYS_DEVICE_NULLDEV in your board config file.
f72da3406   wdenk   Added config opti...
23
24
25
  
   - When booting a linux kernel, the "bootargs" are fixed up so that
     the argument "console=" will be in the command line, no matter how
be2e5a09e   Joe Hershberger   Allow u-boot to b...
26
27
28
     it was set in "bootargs" before. If you don't want the linux command
     line to be affected, define CONFIG_SILENT_U_BOOT_ONLY in your board
     config file as well, and this part of the feature will be disabled.