diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-06-28 07:34:53 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-06-28 07:34:53 -0400 |
commit | afbed1bde45edc7829ac02644815796efc7dd4ac (patch) | |
tree | 6a2ba982d4402a1a64e298a58be9bf231034942c /src/boot.c | |
parent | 83d6ed63495db1a8db314225a9eb20a770152360 (diff) | |
download | seabios-afbed1bde45edc7829ac02644815796efc7dd4ac.tar.gz |
Initial bootsplash support.
Support displaying a jpeg file (stored in cbfs) during bootup.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Diffstat (limited to 'src/boot.c')
-rw-r--r-- | src/boot.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -345,6 +345,9 @@ call_boot_entry(u16 bootseg, u16 bootip, u8 bootdrv) { dprintf(1, "Booting from %04x:%04x\n", bootseg, bootip); + /* Go back to text, the OS might expect it... (Can't do this any later) */ + disable_bootsplash(); + struct bregs br; memset(&br, 0, sizeof(br)); br.flags = F_IF; |