From 48f5f8b850d19767f60ee83bfe0fd30bc4e867b4 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Fri, 30 Jul 2010 14:09:31 -0400 Subject: [PATCH] Default bootsplash on (for coreboot users). --- src/bootsplash.c | 2 +- src/config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootsplash.c b/src/bootsplash.c index f070d7d..676ece3 100644 --- a/src/bootsplash.c +++ b/src/bootsplash.c @@ -248,7 +248,7 @@ gotext: void disable_bootsplash(void) { - if (! CONFIG_BOOTSPLASH || !GET_EBDA(bootsplash_active)) + if (!CONFIG_BOOTSPLASH || !CONFIG_COREBOOT || !GET_EBDA(bootsplash_active)) return; SET_EBDA(bootsplash_active, 0); enable_vga_text_console(); diff --git a/src/config.h b/src/config.h index 3dcbcf5..4572ee5 100644 --- a/src/config.h +++ b/src/config.h @@ -122,7 +122,7 @@ // Run the vga rom during S3 resume. #define CONFIG_S3_RESUME_VGA_INIT 0 // Support boot splash -#define CONFIG_BOOTSPLASH 0 +#define CONFIG_BOOTSPLASH 1 // define it if the (emulated) hardware supports SMM mode #define CONFIG_USE_SMM 1 // Maximum number of map entries in the e820 map -- 2.25.1