diff options
-rw-r--r-- | src/bootsplash.c | 2 | ||||
-rw-r--r-- | src/config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bootsplash.c b/src/bootsplash.c index f070d7d1..676ece3b 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 3dcbcf57..4572ee57 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 |