aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-11-25 19:35:01 -0500
committerKevin O'Connor <kevin@koconnor.net>2009-11-25 19:35:01 -0500
commit4d9d400031417528d4fbe05f845f3759237e48d3 (patch)
treec40a29e5918e3659f6ae7820a0eac7f39ed04346
parent969df6062527fe7019aa02241c321557ed9cb0a8 (diff)
downloadseabios-4d9d400031417528d4fbe05f845f3759237e48d3.tar.gz
Misc updates.
Update todo list. Fix spelling errors in acpi debug messages. Don't call DISK_STUB() in format - use debug_stub() instead.
-rw-r--r--TODO2
-rw-r--r--src/acpi.c5
-rw-r--r--src/disk.c2
3 files changed, 6 insertions, 3 deletions
diff --git a/TODO b/TODO
index a1c1e4a6..f273cf67 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 b7af66e0..9e5a4fcc 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 617cdf02..30b6e7be 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);