diff options
author | Stefan Tauner <stefan.tauner@gmx.at> | 2017-01-15 11:49:25 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-01-17 18:01:56 +0100 |
commit | c48d791506c07f8dafe6ae78305c384f19917e84 (patch) | |
tree | f7f8d3d3e826d80afeb5e67991485b4c1c337dbb /payloads/external/SeaBIOS/Makefile | |
parent | 6f27edd3773dd8aa587e112366f7708e248d19fc (diff) | |
download | coreboot-c48d791506c07f8dafe6ae78305c384f19917e84.tar.xz |
SeaBIOS: Add Kconfig option to set verbosity level
Previously SeaBIOS's default was used (1). This patch defaults to
coreboot's console level instead which is approximately the same
verbosity as SeaBIOS and thus what a user would probably expect.
Change-Id: If79e5f40c9380bb527f870eeb7d0cb43faf00beb
Signed-off-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-on: https://review.coreboot.org/18051
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'payloads/external/SeaBIOS/Makefile')
-rw-r--r-- | payloads/external/SeaBIOS/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/payloads/external/SeaBIOS/Makefile b/payloads/external/SeaBIOS/Makefile index 4b108d5715..98e4b1b2a4 100644 --- a/payloads/external/SeaBIOS/Makefile +++ b/payloads/external/SeaBIOS/Makefile @@ -60,8 +60,11 @@ else false endif endif - # This shows how to force a previously set .config option *off* - #echo "# CONFIG_SMBIOS is not set" >> seabios/.config +ifneq ($(CONFIG_SEABIOS_DEBUG_LEVEL),-1) + echo "CONFIG_DEBUG_LEVEL=$(CONFIG_SEABIOS_DEBUG_LEVEL)" >> seabios/.config +endif +# This shows how to force a previously set .config option *off* +# echo "# CONFIG_SMBIOS is not set" >> seabios/.config $(MAKE) -C seabios olddefconfig OUT=out/ build: config |