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

Added 'RELEASE' option for building a RELEASE version [v1.1.1-testing]

Formerly this was done by editing the related files, which is kinda
annoying when using versioning. With this new method it is more easy
to test release builds while developing.

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/regular/std_text.asm

    r165 r188  
    2727; I'm going to sue your cheap ass, rape your dog and blow up your house. =)
    2828
    29 CopyrightVersionLen   equ   6
    30 ;Copyright             db ' AiR-BOOT v1.06 - (c) 1998-2009 M. Kiewitz, Dedicated to Gerd Kiewitz', 0
    31 ;Copyright             db ' AiR-BOOT v1.07 - (c) 2011 M. Kiewitz - Rousseau test-version >502G (build: #24)', 0
    32 ;Copyright             db ' AiR-BOOT v1.07 - (c) 2011 M. Kiewitz   -  Release Candidate 1  -  (build: #25)', 0
    33 ;Copyright             db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc2-b27)', 0
    34 ;Copyright             db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc3-b31)', 0
    35 ;Copyright             db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc4-b33)', 0
    36 ;Copyright             db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc5-b35)', 0
    37 ;Copyright             db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz', 0
    38 ;Copyright             db ' AiR-BOOT v1.0.8 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz', 0
    39 
    40 ;Copyright             db ' AiR-BOOT v1.0.8-internal-beta - ** !! NOT FOR DISTRIBUTION !! **', 0
    41 ;Copyright             db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz    <<Release Candidate>>    (build: #18)', 0
    42 ;Copyright             db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz  <<Release Candidate 1>> (bld: 20120124)', 0
    43 ;Copyright             db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz  <<Release Candidate 2>> (bld: 20120224)', 0
    44 
    45 
    46 ;~ Copyright             db ' AiR-BOOT v',BLDLVL_MAJOR_VERSION,'.',BLDLVL_MIDDLE_VERSION,'.',BLDLVL_MINOR_VERSION,' - (c) ',BLDLVL_YEAR,' M. Kiewitz  <<Internal Release 2l>> (bld: ',BLDLVL_YEAR,BLDLVL_MONTH,BLDLVL_DAY,')', 0
    4729
    4830;
    49 ; Masm found the above to be too complex, so we broke it up.
     31; Copyright header on top of screen
    5032;
    5133Copyright:
     34IFDEF   RELEASE
     35            ;
     36            ; Copyright header as displayed on RELEASE version
     37            ;
    5238            db ' AiR-BOOT v'
    5339            db BLDLVL_MAJOR_VERSION,'.'
     
    5541            db BLDLVL_MINOR_VERSION,' - (c) 1998-'
    5642            db BLDLVL_YEAR
    57             ;~ db ' M. Kiewitz  <<Release Candidate 4>>  (bld: '
     43            db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'
     44            db 0
     45ELSE
     46            ;
     47            ; Copyright header as displayed on TESTBUILD version
     48            ;
     49            db ' AiR-BOOT v'
     50            db BLDLVL_MAJOR_VERSION,'.'
     51            db BLDLVL_MIDDLE_VERSION,'.'
     52            db BLDLVL_MINOR_VERSION,' - (c) 1998-'
     53            db BLDLVL_YEAR
    5854            db ' M. Kiewitz   << Test Build >>   (bld:'
    59             ;~ db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'
    6055            db BLDLVL_YEAR
    6156            db BLDLVL_MONTH
    6257            db BLDLVL_DAY,')'
    6358            db 0
     59ENDIF
    6460
    65 ;
    66 ; Normal copyright notice.
    67 ;
    68 ;~ Copyright   db ' AiR-BOOT v1.0.8 - (c) 1998-2012 M. Kiewitz, Dedicated to Gerd Kiewitz', 0
    69 
    70 
     61; Length of version string to copy when displayed in menu and just before
     62; booting the selected system.
     63CopyrightVersionLen   equ   6
    7164
    7265; License and source info.
     
    10598; Build Information string.
    10699build_date      db  'Build Date: ',0
    107 jwasm_txt       db  'JWasm',0
    108 masm_txt        db  'Masm',0
    109 wasm_txt        db  'Wasm',0
    110 tasm_txt        db  'Tasm',0
    111100scanning_txt    db  'Scanning...',0
    112 unknown_txt     db  '????',0
Note: See TracChangeset for help on using the changeset viewer.