Changeset 216


Ignore:
Timestamp:
Nov 9, 2017, 11:25:45 PM (7 years ago)
Author:
Ben Rietbroek
Message:

Skip disks with a GPT (0xee) Identifier [v1.1.3-testing]

This is a quick-n-dirty hack to skip GPT disks.
GPT disks are not truly recognized and this hack has the semantics of
the disk having no partitions.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.2-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/bootcode/regular/driveio.asm

    r175 r216  
    308308;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    309309        call    DriveIO_LoadSector
     310
     311        ; ----------------------------------------------------- [Check for GPT]
     312        ; Check the 4 P-Table entries for a GPT identifier
     313        ; If found, set CY and exit to indicate no partitions are found.
     314        ; This prevents the disk from appearing in the menu with an 'unknown'
     315        ; partition identifier.
     316        cmp     byte ptr [si+01c2h], 0eeh   ; Check Entry #1
     317        stc
     318        jz      DIOLP_Success
     319        cmp     byte ptr [si+01d2h], 0eeh   ; Check Entry #2
     320        stc
     321        jz      DIOLP_Success
     322        cmp     byte ptr [si+01e2h], 0eeh   ; Check Entry #3
     323        stc
     324        jz      DIOLP_Success
     325        cmp     byte ptr [si+01f2h], 0eeh   ; Check Entry #4
     326        stc
     327        jz      DIOLP_Success
    310328
    311329        clc
Note: See TracChangeset for help on using the changeset viewer.