Changeset 212


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

Opening new test-version [v1.1.3-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.2-manual.pdf

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r211 r212  
    3333# in the environment, so it also influences recursive make invocations.
    3434#
    35 %RELEASE=y
     35#~ %RELEASE=y
    3636
    3737#                           DEFINITIONS AND STUFF
     
    202202        set RELDIR=release
    203203        set CRC_IGNORE=n
    204         set ABV=AirBoot-v1.1.2
     204        set ABV=AirBoot-v1.1.4
    205205        set PACKDIR=$(%ABV)-src
    206         set WTD=04-13-2017
    207         set WTT=01:01:02
    208         set RDATE=201704130101.02
     206        set WTD=11-07-2017
     207        set WTT=01:01:04
     208        set RDATE=201711070101.04
    209209
    210210        @echo.
     
    243243        set RELEASE=y
    244244        set RELDIR=release
    245         set PACKDIR=AirBoot-v1.1.2-bin
    246         set RDATE=201704130101.02
     245        set PACKDIR=AirBoot-v1.1.4-bin
     246        set RDATE=201711070101.04
    247247
    248248        @%MAKE build
  • trunk/include/version.h

    r188 r212  
    4343#define     BLDLVL_MAJOR_VERSION    "1"
    4444#define     BLDLVL_MIDDLE_VERSION   "1"
    45 #define     BLDLVL_MINOR_VERSION    "2"
     45#define     BLDLVL_MINOR_VERSION    "4"
    4646
    4747// Build date
    4848#define     BLDLVL_YEAR             "2017"
    49 #define     BLDLVL_MONTH            "04"
    50 #define     BLDLVL_DAY              "13"
     49#define     BLDLVL_MONTH            "11"
     50#define     BLDLVL_DAY              "07"
    5151
    5252// Build time
    5353#define     BLDLVL_HOURS            "01"
    5454#define     BLDLVL_MINUTES          "01"
    55 #define     BLDLVL_SECONDS          "02"
     55#define     BLDLVL_SECONDS          "04"
    5656
    5757#else
     
    6060#define     BLDLVL_MAJOR_VERSION    "1"
    6161#define     BLDLVL_MIDDLE_VERSION   "1"
    62 #define     BLDLVL_MINOR_VERSION    "1"
     62#define     BLDLVL_MINOR_VERSION    "3"
    6363
    6464// Build date
    6565#define     BLDLVL_YEAR             "2017"
    66 #define     BLDLVL_MONTH            "04"
    67 #define     BLDLVL_DAY              "13"
     66#define     BLDLVL_MONTH            "11"
     67#define     BLDLVL_DAY              "07"
    6868
    6969// Build time
  • trunk/include/version.inc

    r188 r212  
    3232AB_MAJOR_VERSION    EQU     1
    3333AB_MIDDLE_VERSION   EQU     1
    34 AB_MINOR_VERSION    EQU     2
     34AB_MINOR_VERSION    EQU     4
    3535
    3636; The Year, Month and Day in BCD so we can easily extract nibbles.
    3737AB_YEAR             EQU     2017h
    38 AB_MONTH            EQU     04h
    39 AB_DAY              EQU     13h
     38AB_MONTH            EQU     11h
     39AB_DAY              EQU     07h
    4040
    4141; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
    4242AB_HOURS            EQU     01h
    4343AB_MINUTES          EQU     01h
    44 AB_SECONDS          EQU     02h
     44AB_SECONDS          EQU     04h
    4545
    4646ELSE
     
    5050AB_MAJOR_VERSION    EQU     1
    5151AB_MIDDLE_VERSION   EQU     1
    52 AB_MINOR_VERSION    EQU     1
     52AB_MINOR_VERSION    EQU     3
    5353
    5454; The Year, Month and Day in BCD so we can easily extract nibbles.
    5555AB_YEAR             EQU     2017h
    56 AB_MONTH            EQU     04h
    57 AB_DAY              EQU     13h
     56AB_MONTH            EQU     11h
     57AB_DAY              EQU     07h
    5858
    5959; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note: See TracChangeset for help on using the changeset viewer.