Ignore:
Timestamp:
Oct 14, 2011, 10:22:12 PM (14 years ago)
Author:
cjm
Message:
  • Added IBMS506$ character device driver to support existing SMART tools
  • Finishing touches to SMART support
  • Updated READNE with information around "/f" command line parameter and SMART support
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/init.asm

    r79 r128  
    2828
    2929DEVHDR          SEGMENT WORD PUBLIC 'DATA'
    30 _dev_hdr        dd      -1                      ; no headers after this one
     30_dev_hdr        dd      _legacy_hdr             ; next device header
    3131                dw      DEVLEV_3 + DEV_CHAR_DEV ; flags for ADD drivers
    32                 dw      _asm_strat              ; strategy routine
     32                dw      OFFSET _asm_strat       ; strategy routine
    3333                dw      0                       ; no IDC routine
    3434                db      "OS2AHCI$"              ; name of character device
    3535                dq      0                       ; 8 reserved bytes
    3636                dd      DEV_IOCTL2 + DEV_ADAPTER_DD + DEV_INITCOMPLETE + 20h ; ADD flags
     37                dw      0
     38
     39_legacy_hdr     dd      -1                      ; no headers after this one
     40                dw      DEVLEV_3 + DEV_CHAR_DEV ; flags for ADD drivers
     41                dw      OFFSET _asm_strat       ; strategy routine
     42                dw      0                       ; no IDC routine
     43                db      "IBMS506$"              ; name of character device
     44                dq      0                       ; 8 reserved bytes
     45                dd      0
    3746                dw      0
    3847DEVHDR          ENDS
Note: See TracChangeset for help on using the changeset viewer.