Ignore:
Timestamp:
Feb 18, 2011, 10:09:10 PM (14 years ago)
Author:
chris
Message:
  • APM support
  • Generic IOCTL interface for adapter passthrough commands (ATA and ATAPI)
  • Fixes to ATAPI sense data handling
  • Cosmetic changes to debug reporting
  • Fixed missing interrupt enable flag for PIO transfer completions
  • Added command line switch /I to ignore specific adapters
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/Makefile

    r36 r76  
    5050               -I$(DDK)\base\ibmh \
    5151               -I$(DDK)\base\src\dev\dasd\diskh \
     52               -I$(DDK)\base\src\dev\thinkpad\dockii\apmcalls \
    5253               -I$(CC16)\include
    5354
     
    5758LIB_DIRS     = $(DDK)\base\lib\ \
    5859               $(DDK)\base\src\dev\dasd\devhlp\ \
    59                $(CC16)\lib\ \
     60               $(DDK)\base\src\dev\thinkpad\dockii\apmcalls\ \
     61               $(CC16)\lib\ \
    6062
    6163
     
    6567TARGET   = os2ahci.add
    6668
    67 LIBS     = addcalls dhcalls doscalls slibcep rmcalls
     69LIBS     = addcalls dhcalls doscalls slibcep rmcalls apmcalls
    6870
    69 SRCS     = init.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c ctxhook.c
     71SRCS     = init.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c ctxhook.c \
     72           apm.c ioctl.c
    7073
    7174OBJS     = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj \
    72            ctxhook.obj
     75           ctxhook.obj apm.obj ioctl.obj
    7376
    7477INCS     = os2ahci.h ahci.h version.h
     
    8891libc.obj:     libc.c     Makefile $(INCS)
    8992
    90 os2ahci.obj:  os2ahci.c  Makefile $(INCS) bldday.h
     93os2ahci.obj:  os2ahci.c  Makefile $(INCS) bldday.h ioctl.h
    9194
    9295pci.obj:      pci.c      Makefile $(INCS)
     
    99102
    100103ctxhook.obj:  ctxhook.c  Makefile $(INCS) ata.h atapi.h
     104
     105apm.obj:      apm.c      Makefile $(INCS)
     106
     107ioctl.obj:    ioctl.c    Makefile $(INCS) atapi.h ioctl.h
    101108
    102109###############################################################################
Note: See TracChangeset for help on using the changeset viewer.