Changeset 212
- Timestamp:
- Nov 9, 2017, 11:25:40 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r211 r212 33 33 # in the environment, so it also influences recursive make invocations. 34 34 # 35 %RELEASE=y35 #~ %RELEASE=y 36 36 37 37 # DEFINITIONS AND STUFF … … 202 202 set RELDIR=release 203 203 set CRC_IGNORE=n 204 set ABV=AirBoot-v1.1. 2204 set ABV=AirBoot-v1.1.4 205 205 set PACKDIR=$(%ABV)-src 206 set WTD= 04-13-2017207 set WTT=01:01:0 2208 set RDATE=2017 04130101.02206 set WTD=11-07-2017 207 set WTT=01:01:04 208 set RDATE=201711070101.04 209 209 210 210 @echo. … … 243 243 set RELEASE=y 244 244 set RELDIR=release 245 set PACKDIR=AirBoot-v1.1. 2-bin246 set RDATE=2017 04130101.02245 set PACKDIR=AirBoot-v1.1.4-bin 246 set RDATE=201711070101.04 247 247 248 248 @%MAKE build -
trunk/include/version.h
r188 r212 43 43 #define BLDLVL_MAJOR_VERSION "1" 44 44 #define BLDLVL_MIDDLE_VERSION "1" 45 #define BLDLVL_MINOR_VERSION " 2"45 #define BLDLVL_MINOR_VERSION "4" 46 46 47 47 // Build date 48 48 #define BLDLVL_YEAR "2017" 49 #define BLDLVL_MONTH " 04"50 #define BLDLVL_DAY " 13"49 #define BLDLVL_MONTH "11" 50 #define BLDLVL_DAY "07" 51 51 52 52 // Build time 53 53 #define BLDLVL_HOURS "01" 54 54 #define BLDLVL_MINUTES "01" 55 #define BLDLVL_SECONDS "0 2"55 #define BLDLVL_SECONDS "04" 56 56 57 57 #else … … 60 60 #define BLDLVL_MAJOR_VERSION "1" 61 61 #define BLDLVL_MIDDLE_VERSION "1" 62 #define BLDLVL_MINOR_VERSION " 1"62 #define BLDLVL_MINOR_VERSION "3" 63 63 64 64 // Build date 65 65 #define BLDLVL_YEAR "2017" 66 #define BLDLVL_MONTH " 04"67 #define BLDLVL_DAY " 13"66 #define BLDLVL_MONTH "11" 67 #define BLDLVL_DAY "07" 68 68 69 69 // Build time -
trunk/include/version.inc
r188 r212 32 32 AB_MAJOR_VERSION EQU 1 33 33 AB_MIDDLE_VERSION EQU 1 34 AB_MINOR_VERSION EQU 234 AB_MINOR_VERSION EQU 4 35 35 36 36 ; The Year, Month and Day in BCD so we can easily extract nibbles. 37 37 AB_YEAR EQU 2017h 38 AB_MONTH EQU 04h39 AB_DAY EQU 13h38 AB_MONTH EQU 11h 39 AB_DAY EQU 07h 40 40 41 41 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation. 42 42 AB_HOURS EQU 01h 43 43 AB_MINUTES EQU 01h 44 AB_SECONDS EQU 0 2h44 AB_SECONDS EQU 04h 45 45 46 46 ELSE … … 50 50 AB_MAJOR_VERSION EQU 1 51 51 AB_MIDDLE_VERSION EQU 1 52 AB_MINOR_VERSION EQU 152 AB_MINOR_VERSION EQU 3 53 53 54 54 ; The Year, Month and Day in BCD so we can easily extract nibbles. 55 55 AB_YEAR EQU 2017h 56 AB_MONTH EQU 04h57 AB_DAY EQU 13h56 AB_MONTH EQU 11h 57 AB_DAY EQU 07h 58 58 59 59 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note:
See TracChangeset
for help on using the changeset viewer.