Ignore:
Timestamp:
Jan 28, 2016, 9:39:16 AM (10 years ago)
Author:
Ben Rietbroek
Message:

AiR-BOOT v1.1.0-RELEASE [2013-04-05]

This is the version as included on the eCS v2.2-beta CD's.
It was technically a pre-v1.1.0 release, with the final v1.1.0,
including some minor patches, to be included with eCS v2.2-GA.
Because this version is now known to be v1.1.0, we'll keep it that way.

The minor patches and meanwhile done fixes will soon appear as v1.1.1
test-version commits to be consolidated to a v1.1.2 release.
Issues regarding removable media are planned for the v1.1.4 release as
this requires removal of obsolete code and optimizing existing code to
create space in the ~32K block (track0) the loader resides in.

With this version of AiR-BOOT, the display of the version number has
changed to be compatible with the WarpIN versioning system.
So all digits are now separated by a dot. This change is only visual and
tools relying on the way AiR-BOOT stores it's version numer internally
are not affected.

File:
1 edited

Legend:

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

    r54 r55  
    301301
    302302    PSSP_IgnorePartition:
    303         ; L”scht das Boot-Able Flag...
    304         ; CHECKME: About clearing the active flags, TRACK ticket #6
    305         and     byte ptr [si+LocBRPT_Flags], 7Fh ; Reset the Active-Flag
     303        ; Only clear the boot-flag on the boot-disk.
     304        ; Clearing the boot-flags on other disks would prevent booting them
     305        ; from the BIOS. (TRAC ticket #6)
     306        cmp     dl, 080h                            ; See if this is boot-disk
     307        jne     PSSP_Skip_Clear_BootFlag            ; Nope, skip clear flag
     308        and     byte ptr [si+LocBRPT_Flags], 7Fh    ; Reset the Active-Flag
     309    PSSP_Skip_Clear_BootFlag:
    306310        add     si, LocBRPT_LenOfEntry     ; 16 Bytes per partition entry
    307311        cmp     si, 500+offset PartitionSector
Note: See TracChangeset for help on using the changeset viewer.