via epia-m now works with default x86.c instead of its own copy of vgabios.c.

Allows to drop quite a bunch of nasty code

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5478 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2010-04-22 18:15:32 +00:00
committed by Stefan Reinauer
parent 64d3baf982
commit f75b19ac85
13 changed files with 168 additions and 1024 deletions

View File

@@ -318,7 +318,7 @@ int __attribute__((regparm(0))) interrupt_handler(u32 intnumber,
/* Pass errors back to our caller via the CARRY flag */
if (ret) {
printk(BIOS_DEBUG,"error!\n");
printk(BIOS_DEBUG,"int%02x call returned error.\n", intnumber);
flags |= 1; // error: set carry
}else{
flags &= ~1; // no error: clear carry

View File

@@ -257,8 +257,6 @@ __run_vsa = RELOCATED(.)
.globl __run_interrupt
__run_interrupt = RELOCATED(.)
/* paranoia -- does ecx get saved? not sure. This is
* the easiest safe thing to do. */
pushal
/* save the stack */
mov %esp, __stack