[SeaBIOS] [PATCH 5/5] Default bootsplash on (for coreboot users).

Kevin O'Connor kevin at koconnor.net
Fri Jul 30 20:16:01 CEST 2010


---
 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
-- 
1.7.2




More information about the SeaBIOS mailing list