Changeset 64
- Timestamp:
- Oct 11, 2016, 10:41:53 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AiR-BOOT.TXT
r56 r64 260 260 Resources: 261 261 ---------- 262 eWiki site : http://ewiki.ecomstation.nl/AiRBOOT 263 General project site : http://air-boot.netlabs.org 264 Trac project site : http://svn.netlabs.org/air-boot 265 Bug tracking: : http://bugs.ecomstation.nl 266 Contact e-mail : airboot@ecomstation.com 267 268 269 262 GitHub Project Portal : http://rousseaux.github.io/netlabs.air-boot 263 GitHub Repository : http://github.com/rousseaux/netlabs.air-boot 264 Netlabs Project Page : http://trac.netlabs.org/air-boot 265 Netlabs Respository : http://trac.netlabs.org/air-boot/browser/trunk 266 Bug tracking: : http://trac.netlabs.org/air-boot/report 267 Contact e-mail : rousseau.os2dev@gmx.com 270 268 271 269 -
trunk/README.md
r63 r64 16 16 Many text documents contain duplicate, incorrect or obsolete information.<br> 17 17 A cleanup will ensure a more up-to-date understanding of the current AirBoot<br> 18 and it development direction.<br>18 and its development direction.<br> 19 19 20 20 o Removing obsolete source files<br> -
trunk/bootcode/airboot.md5
r63 r64 1 ceb2087429349e3c619e30c238982c65*airboot.bin1 d18ec4b581b32d87a485317e1a31ecd4 *airboot.bin -
trunk/bootcode/regular/std_text.asm
r63 r64 83 83 db 'For more information and source, please visit:', 0 84 84 db 'http://svn.netlabs.org/air-boot', 0 85 db 'Contact via e-mail: ', 0, ' airboot@ecomstation.com', 085 db 'Contact via e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0 86 86 87 87 ; Table that points to BIOS device names. … … 103 103 ; MBR protection; should also be translated and moved. 104 104 NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0 105 NonMBRwrite_rep db 'Please report this at airboot@ecomstation.com',0105 NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0 106 106 SystemHalted db 'System Halted',0 107 107 … … 113 113 tasm_txt db 'Tasm',0 114 114 unknown_txt db '????',0 115 -
trunk/bootcode/version.inc
r63 r64 37 37 AB_YEAR EQU 2016h 38 38 AB_MONTH EQU 10h 39 AB_DAY EQU 09h39 AB_DAY EQU 10h 40 40 41 41 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation. -
trunk/install/c/install.h
r63 r64 32 32 #define BLDLVL_YEAR "2016" 33 33 #define BLDLVL_MONTH "10" 34 #define BLDLVL_DAY " 09"34 #define BLDLVL_DAY "10" 35 35 // Build time 36 36 //~ #define BLDLVL_HOURS "01" -
trunk/tools/internal/fixcode.h
r57 r64 2 2 #define __FIXCODE_H__ 3 3 4 /* 5 // OS/2 BLDLEVEL Information. 6 */ 7 // Vendor 8 //~ #define BLDLVL_VENDOR "KIEWITZ" 9 //~ #define BLDLVL_VENDOR "RDPe" 10 #define BLDLVL_VENDOR "*UNKNOWN*" 11 // Version 12 #define BLDLVL_MAJOR_VERSION "1" 13 #define BLDLVL_MIDDLE_VERSION "1" 14 #define BLDLVL_MINOR_VERSION "1" 15 // Build date 16 #define BLDLVL_YEAR "2016" 17 #define BLDLVL_MONTH "10" 18 #define BLDLVL_DAY "10" 19 // Build time 20 //~ #define BLDLVL_HOURS "01" 21 //~ #define BLDLVL_MINUTES "01" 22 //~ #define BLDLVL_SECONDS "00" 23 #define BLDLVL_HOURS "99" 24 #define BLDLVL_MINUTES "99" 25 #define BLDLVL_SECONDS "99" 26 // Build machine 27 //~ #define BLDLVL_MACHINE "OS2BLDBOX" 28 #define BLDLVL_MACHINE "*UNKNOWN*" 29 // Build language 30 #define BLDLVL_LANGUAGE "EN" 31 32 char bldlevel[] = "@#"\ 33 BLDLVL_VENDOR":"\ 34 BLDLVL_MAJOR_VERSION"."\ 35 BLDLVL_MIDDLE_VERSION"."\ 36 BLDLVL_MINOR_VERSION"#@##1## "\ 37 BLDLVL_YEAR"/"\ 38 BLDLVL_MONTH"/"\ 39 BLDLVL_DAY" "\ 40 BLDLVL_HOURS":"\ 41 BLDLVL_MINUTES":"\ 42 BLDLVL_SECONDS" "\ 43 BLDLVL_MACHINE"::"\ 44 BLDLVL_LANGUAGE"::"\ 45 BLDLVL_MINOR_VERSION"::@@"\ 46 "Image Embedder for the AiR-BOOT Boot Manager"; 4 47 5 48 #if defined(__DOS__) -
trunk/tools/os2/setaboot/setaboot.h
r63 r64 18 18 #define BLDLVL_YEAR "2016" 19 19 #define BLDLVL_MONTH "10" 20 #define BLDLVL_DAY " 09"20 #define BLDLVL_DAY "10" 21 21 // Build time 22 22 //~ #define BLDLVL_HOURS "01"
Note:
See TracChangeset
for help on using the changeset viewer.