diff options
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 |