diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-07-26 23:47:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-07-26 23:47:26 -0400 |
commit | cadaf0e35d4530a0aa3f3100c3c0e5c96d9f0556 (patch) | |
tree | e87fca3a157363d1ca064258a44704dd1a289305 /src/biosvar.h | |
parent | 2641186e7650d1dbe9249f57fe005581f31da402 (diff) | |
download | seabios-cadaf0e35d4530a0aa3f3100c3c0e5c96d9f0556.tar.gz |
Be sure to disable bootsplash on all BIOS boot cases.
Disable the bootsplash on cbfs payload exec, and if something hooks
int19.
Also, be sure to only disable the bootsplash (revert to text mode)
once.
Diffstat (limited to 'src/biosvar.h')
-rw-r--r-- | src/biosvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/biosvar.h b/src/biosvar.h index dce35af2..df0df0eb 100644 --- a/src/biosvar.h +++ b/src/biosvar.h @@ -1,6 +1,6 @@ // Variable layouts of bios. // -// Copyright (C) 2008,2009 Kevin O'Connor <kevin@koconnor.net> +// Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net> // // This file may be distributed under the terms of the GNU LGPLv3 license. #ifndef __BIOSVAR_H @@ -216,6 +216,7 @@ struct extended_bios_data_area_s { u8 other2[0xC4]; // 0x121 - Begin custom storage. + u8 bootsplash_active; u8 ps2ctr; struct usbkeyinfo usbkey_last; |