diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-07-30 14:09:31 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-07-30 14:09:31 -0400 |
commit | 48f5f8b850d19767f60ee83bfe0fd30bc4e867b4 (patch) | |
tree | 395aad3655007fc036388ff6a8c07689215570d8 | |
parent | 8d85eb12ee02b3d6e56f5846517a08f0d08870bc (diff) | |
download | seabios-48f5f8b850d19767f60ee83bfe0fd30bc4e867b4.tar.gz |
Default bootsplash on (for coreboot users).
-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 |