diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-08-11 21:59:37 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-08-11 21:59:37 -0400 |
commit | c892b138d897f93f8e863fff605e8c2a456b3fa6 (patch) | |
tree | 676f67b33b4cfe0844add2d999a6d746515ea09d /Makefile | |
parent | f2d48a3d6584b05f6357e3efc34d78db1501eaa5 (diff) | |
download | seabios-c892b138d897f93f8e863fff605e8c2a456b3fa6.tar.gz |
Separate ATA code from generic disk code.
Move generic code from ata.c to new file block.c.
Rename atabits.h to ata.h and move ata header definitions from disk.h.
Rename ATA.channels to ATA_channels.
Rename ATA structure to Drives.
Support both CONFIG_DRIVES and CONFIG_ATA options.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ VERSION=pre-0.4.2-$(shell date +"%Y%m%d_%H%M%S")-$(shell hostname) OUT=out/ # Source files -SRCBOTH=output.c util.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \ +SRCBOTH=output.c util.c block.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \ serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \ pnpbios.c pirtable.c vgahooks.c pmm.c SRC16=$(SRCBOTH) system.c disk.c apm.c pcibios.c font.c |