Changeset 53


Ignore:
Timestamp:
Apr 13, 2014, 5:13:52 PM (11 years ago)
Author:
Ben Rietbroek
Message:

Fixed PRB CRC-issue (Bogus PBR Virus Warning) [2013-04-03]

This was caused by not updating the CRC for the Partition Boot Record
while HPFS/JFS Partition Boot Records were updated when using the
advanced drive-letter feature to boot eCS-systems that use the same
drive-letter.

Location:
trunk/BOOTCODE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BOOTCODE/REGULAR/PARTMAIN.ASM

    r52 r53  
    20392039       
    20402040        ; BOOKMARK: Update the CRC of the Partition Boot Record.
    2041         ; FIXME:    Update CRC on PBR
    2042         ;~ mov     bx, offset [PBRSector]
    2043         ;~ call    PART_UpdateBootRecordCRC
     2041        mov     bx, offset [PBRSector]
     2042        call    PART_UpdateBootRecordCRC
     2043        call    DriveIO_SaveConfiguration
    20442044
    20452045       
  • trunk/BOOTCODE/VERSION.INC

    r52 r53  
    3636; The Year, Month and Day in BCD so we can easily extract nibbles.
    3737AB_YEAR             EQU     2013h
    38 AB_MONTH            EQU     02h
    39 AB_DAY              EQU     24h
     38AB_MONTH            EQU     04h
     39AB_DAY              EQU     03h
    4040
    4141; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
    42 AB_HOURS            EQU     21h
    43 AB_MINUTES          EQU     16h
     42AB_HOURS            EQU     16h
     43AB_MINUTES          EQU     10h
    4444AB_SECONDS          EQU     00h
    4545
Note: See TracChangeset for help on using the changeset viewer.