Ignore:
Timestamp:
Nov 7, 2017, 7:13:12 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Do not enable time-out when debugging [v1.1.1-testing]

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.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/airboot.asm

    r186 r202  
    19931993
    19941994CFG_PartLast            db  0   ; Which Partition was booted last time ? (Base=0)
     1995
     1996; Do not enable time-out when debugging.
     1997IFDEF   AUX_DEBUG
     1998CFG_TimedBoot           db  0   ; Timed Boot Enable (for REAL Enable look TimedBootEnable)
     1999ELSE
    19952000CFG_TimedBoot           db  1   ; Timed Boot Enable (for REAL Enable look TimedBootEnable)
     2001ENDIF
     2002
    19962003CFG_TimedSecs           db  15  ; Timed Boot - How Many Seconds Till Boot
    19972004CFG_TimedDelay          dw  123 ; Timed Boot - Delay
Note: See TracChangeset for help on using the changeset viewer.