aboutsummaryrefslogtreecommitdiffstats
path: root/src/bootsplash.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-07-30 14:09:31 -0400
committerKevin O'Connor <kevin@koconnor.net>2010-07-30 14:09:31 -0400
commit48f5f8b850d19767f60ee83bfe0fd30bc4e867b4 (patch)
tree395aad3655007fc036388ff6a8c07689215570d8 /src/bootsplash.c
parent8d85eb12ee02b3d6e56f5846517a08f0d08870bc (diff)
downloadseabios-48f5f8b850d19767f60ee83bfe0fd30bc4e867b4.tar.gz
Default bootsplash on (for coreboot users).
Diffstat (limited to 'src/bootsplash.c')
-rw-r--r--src/bootsplash.c2
1 files changed, 1 insertions, 1 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();