diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 23:57:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 135f3f676de1416f0cd0fa7f0c886cf1b72222cb (patch) | |
tree | 805d962c2b66daffcb30b0816cce8faf67e8a809 /src/boot.c | |
parent | b18557ab09a60476b4269c3a473d8aebeaaa002f (diff) | |
download | seabios-135f3f676de1416f0cd0fa7f0c886cf1b72222cb.tar.gz |
Split disk.h into block.h and std/disk.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/boot.c')
-rw-r--r-- | src/boot.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,9 +6,9 @@ // This file may be distributed under the terms of the GNU LGPLv3 license. #include "boot.h" // boot_init +#include "block.h" // struct drive_s #include "bregs.h" // struct bregs #include "config.h" // CONFIG_* -#include "disk.h" // cdrom_boot #include "fw/paravirt.h" // qemu_cfg_show_boot_menu #include "hw/cmos.h" // inb_cmos #include "hw/pci.h" // pci_bdf_to_* @@ -17,6 +17,7 @@ #include "malloc.h" // free #include "output.h" // dprintf #include "romfile.h" // romfile_loadint +#include "std/disk.h" // struct mbr_s #include "string.h" // memset #include "util.h" // irqtimer_calc |