mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
6b752c729e
Debug dump logs are not always required. Add a new config option UBIFS_SILENCE_DEBUG_DUMP to silence all debug dumps. On powerpc/mpc85xx when enabled this will decrease size of U-Boot binary by 11 kB. Signed-off-by: Pali Rohár <pali@kernel.org> Tested-by: Tony Dinh <mibodhi@gmail.com>
14 lines
399 B
Text
14 lines
399 B
Text
config UBIFS_SILENCE_MSG
|
|
bool "UBIFS silence verbose messages"
|
|
default ENV_IS_IN_UBI
|
|
help
|
|
Make the verbose messages from UBIFS stop printing. This leaves
|
|
warnings and errors enabled.
|
|
|
|
config UBIFS_SILENCE_DEBUG_DUMP
|
|
bool "UBIFS silence debug dumps"
|
|
default y if UBIFS_SILENCE_MSG
|
|
default n
|
|
help
|
|
Make the debug dumps from UBIFS stop printing.
|
|
This decreases size of U-Boot binary.
|