Changeset 186
- Timestamp:
- Feb 28, 2017, 10:50:54 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/Makefile
r185 r186 91 91 !endif 92 92 93 !if neqFIXPACK93 !ifdef FIXPACK 94 94 CDEFS+= -DTESTVER 95 95 !endif … … 168 168 @md $(ZIPDIR)\pkg2 169 169 @copy /b $(ROOT)\Tools\smartahci.exe $(ZIPDIR)\pkg2 >NUL 170 #@copy $(ROOT)\Tools\testlog.cmd $(ZIPDIR)\pkg2 >NUL171 170 172 171 @md $(ZIPDIR)\pkg20 … … 185 184 clean: .symbolic 186 185 rm -f *.def *.err *.lnk version.h 186 rm $(ROOT)\AHCI-*-WPI.zip 187 187 @if exist Debug @!rm -r Debug 188 188 @if exist Retail @!rm -r Retail -
trunk/src/os2ahci/ReadMe.txt
r185 r186 1 1 AHCI Driver for OS/2 v2.01 2 3 --- NOTICE ---4 This driver has been in use for more than a month so I am bumping5 it up from alpha to beta software. Use of beta software in a6 production environment is not recommended.7 2 8 3 … … 22 17 Copyright (c) 2011 thi.guten Software Development 23 18 Copyright (c) 2011 Mensys B.V. 24 Copyright (c) 2013-201 6David Azarewicz19 Copyright (c) 2013-2017 David Azarewicz 25 20 26 21 Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/ata.c
r185 r186 286 286 cmd_hdr->options |= n << 16; 287 287 288 if ( D32g_DbgLevel >= 7)288 if ((D32g_DbgLevel >= 7) || (atapi_cmd != NULL)) 289 289 { 290 290 DPRINTF(0,"ATA command for %d.%d.%d, slot %d:\n", ad_no(ai), p, d, slot); -
trunk/src/os2ahci/os2ahci.c
r185 r186 612 612 pIorb->ErrorCode = 0; 613 613 memset(&pIorb->ADDWorkSpace, 0x00, sizeof(ADD_WORKSPACE)); 614 615 #ifdef DEBUG 616 DumpIorb(pIorb); /* DAZ TESTING */ 617 #endif 614 618 615 619 if (iorb_driver_level(pIorb)) -
trunk/src/os2ahci/trace.c
r185 r186 69 69 void DumpIorb(IORBH *pIorb) 70 70 { 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", 72 75 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", 74 77 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", 76 79 pIorb->Timeout, pIorb->StatusBlockLen, pIorb->pStatusBlock, pIorb->Reserved_1, 77 80 pIorb->pNxtIORB); -
trunk/tools/ahci.wis
r179 r186 82 82 <PAGE INDEX=1 TYPE=README> 83 83 <TEXT>Welcome to the =("GetEnv MyTitle")</TEXT> 84 <README EXTRACTFROMPCK="20" FORMAT="PLAIN">R EADME</README>84 <README EXTRACTFROMPCK="20" FORMAT="PLAIN">ReadMe.txt</README> 85 85 </PAGE> 86 86 <PAGE INDEX=2 TYPE=CONTAINER>
Note:
See TracChangeset
for help on using the changeset viewer.