Misc updates.
authorKevin O'Connor <kevin@koconnor.net>
Thu, 26 Nov 2009 00:35:01 +0000 (19:35 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Thu, 26 Nov 2009 00:35:01 +0000 (19:35 -0500)
Update todo list.
Fix spelling errors in acpi debug messages.
Don't call DISK_STUB() in format - use debug_stub() instead.

TODO
src/acpi.c
src/disk.c

diff --git a/TODO b/TODO
index a1c1e4a6011ebe2da39708303cf924e347664c3a..f273cf672dec43d9d20671cdb9efc1677ab85c77 100644 (file)
--- 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
index b7af66e0b2fac9eb4f42e4f8c068c26a4c93138a..9e5a4fccf3f72b52d24478b41f9d1d5712dcc5d6 100644 (file)
@@ -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;
         }
     }
index 617cdf02eb1a4d5f9e52c0a501d8094c2f348ce3..30b6e7be9bc1d236dca6df5ec84ebc5cfb32c0ab 100644 (file)
@@ -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);