From: Kevin O'Connor Date: Thu, 26 Nov 2009 00:35:01 +0000 (-0500) Subject: Misc updates. X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=seabios.git;a=commitdiff_plain;h=4d9d400031417528d4fbe05f845f3759237e48d3 Misc updates. Update todo list. Fix spelling errors in acpi debug messages. Don't call DISK_STUB() in format - use debug_stub() instead. --- diff --git a/TODO b/TODO index a1c1e4a..f273cf6 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,5 @@ +If POST is rerun, try to do a machine reboot. + Add int 0x1589 support. Review changes committed to coreboot, virtualbox, qemu, kvm, and bochs diff --git a/src/acpi.c b/src/acpi.c index b7af66e..9e5a4fc 100644 --- a/src/acpi.c +++ b/src/acpi.c @@ -642,12 +642,13 @@ acpi_bios_init(void) u16 len = qemu_cfg_next_acpi_table_len(); void *addr = malloc_high(len); if (!addr) { - dprintf(1, "Not enogh memory of ext acpi table of size %d!\n", len); + dprintf(1, "Not enough memory for ext acpi table of size %d!\n" + , len); continue; } ACPI_INIT_TABLE(qemu_cfg_next_acpi_table_load(addr, len)); if (tbl_idx == MAX_ACPI_TABLES) { - dprintf(1, "To many external table!\n"); + dprintf(1, "Too many external tables!\n"); break; } } diff --git a/src/disk.c b/src/disk.c index 617cdf0..30b6e7b 100644 --- a/src/disk.c +++ b/src/disk.c @@ -190,7 +190,7 @@ disk_1304(struct bregs *regs, struct drive_s *drive_g) static void disk_1305(struct bregs *regs, struct drive_s *drive_g) { - DISK_STUB(regs); + debug_stub(regs); u16 nlc, nlh, nlspt; fillLCHS(drive_g, &nlc, &nlh, &nlspt);