Changeset 186


Ignore:
Timestamp:
Feb 28, 2017, 10:50:54 PM (8 years ago)
Author:
David Azarewicz
Message:

Doc changes
Warpin package changes

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/Makefile

    r185 r186  
    9191!endif
    9292
    93 !ifneq FIXPACK
     93!ifdef FIXPACK
    9494CDEFS+= -DTESTVER
    9595!endif
     
    168168  @md $(ZIPDIR)\pkg2
    169169  @copy /b $(ROOT)\Tools\smartahci.exe $(ZIPDIR)\pkg2 >NUL
    170   #@copy $(ROOT)\Tools\testlog.cmd $(ZIPDIR)\pkg2 >NUL
    171170
    172171  @md $(ZIPDIR)\pkg20
     
    185184clean: .symbolic
    186185  rm -f *.def *.err *.lnk version.h
     186  rm $(ROOT)\AHCI-*-WPI.zip
    187187  @if exist Debug @!rm -r Debug
    188188  @if exist Retail @!rm -r Retail
  • trunk/src/os2ahci/ReadMe.txt

    r185 r186  
    11AHCI Driver for OS/2 v2.01
    2 
    3 --- NOTICE ---
    4 This driver has been in use for more than a month so I am bumping
    5 it up from alpha to beta software. Use of beta software in a
    6 production environment is not recommended.
    72
    83
     
    2217Copyright (c) 2011 thi.guten Software Development
    2318Copyright (c) 2011 Mensys B.V.
    24 Copyright (c) 2013-2016 David Azarewicz
     19Copyright (c) 2013-2017 David Azarewicz
    2520
    2621Authors: Christian Mueller, Markus Thielen
  • trunk/src/os2ahci/ata.c

    r185 r186  
    286286  cmd_hdr->options |= n << 16;
    287287
    288   if (D32g_DbgLevel >= 7)
     288  if ((D32g_DbgLevel >= 7) || (atapi_cmd != NULL))
    289289  {
    290290    DPRINTF(0,"ATA command for %d.%d.%d, slot %d:\n", ad_no(ai), p, d, slot);
  • trunk/src/os2ahci/os2ahci.c

    r185 r186  
    612612    pIorb->ErrorCode = 0;
    613613    memset(&pIorb->ADDWorkSpace, 0x00, sizeof(ADD_WORKSPACE));
     614
     615    #ifdef DEBUG
     616    DumpIorb(pIorb); /* DAZ TESTING */
     617    #endif
    614618
    615619    if (iorb_driver_level(pIorb))
  • trunk/src/os2ahci/trace.c

    r185 r186  
    6969void DumpIorb(IORBH *pIorb)
    7070{
    71   DPRINTF(2,"IORB %x: Size=%x Len=%x Handle=%x CmdCode=%x\n",
     71  if (D32g_DbgLevel < 2) return;
     72  if (!ad_infos[iorb_unit_adapter(pIorb)].ports[iorb_unit_port(pIorb)].devs[iorb_unit_device(pIorb)].atapi) return;
     73
     74  dprintf(0,"IORB %x: Size=%x Len=%x Handle=%x CmdCode=%x\n",
    7275      pIorb, sizeof(IORBH), pIorb->Length, pIorb->UnitHandle, pIorb->CommandCode);
    73   DPRINTF(2,"  CmdMod=%x ReqCtrl=%x Status=%x ErrorCode=%x\n",
     76  dprintf(0,"  CmdMod=%x ReqCtrl=%x Status=%x ErrorCode=%x\n",
    7477      pIorb->CommandModifier, pIorb->RequestControl, pIorb->Status, pIorb->ErrorCode);
    75   DPRINTF(2,"  Timeout=%x StatusBlkLen=%x pStatusBlk=%x Res=%x pNxtIORB=%x\n",
     78  dprintf(0,"  Timeout=%x StatusBlkLen=%x pStatusBlk=%x Res=%x pNxtIORB=%x\n",
    7679      pIorb->Timeout, pIorb->StatusBlockLen, pIorb->pStatusBlock, pIorb->Reserved_1,
    7780      pIorb->pNxtIORB);
  • trunk/tools/ahci.wis

    r179 r186  
    8282  <PAGE INDEX=1 TYPE=README>
    8383   <TEXT>Welcome to the =("GetEnv MyTitle")</TEXT>
    84    <README EXTRACTFROMPCK="20" FORMAT="PLAIN">README</README>
     84   <README EXTRACTFROMPCK="20" FORMAT="PLAIN">ReadMe.txt</README>
    8585  </PAGE>
    8686  <PAGE INDEX=2 TYPE=CONTAINER>
Note: See TracChangeset for help on using the changeset viewer.