Changeset 64


Ignore:
Timestamp:
Oct 11, 2016, 10:41:53 PM (9 years ago)
Author:
Ben Rietbroek
Message:

Updated Contact Information [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

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/AiR-BOOT.TXT

    r56 r64  
    260260Resources:
    261261----------
    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 
     262GitHub Project Portal : http://rousseaux.github.io/netlabs.air-boot
     263GitHub Repository     : http://github.com/rousseaux/netlabs.air-boot
     264Netlabs Project Page  : http://trac.netlabs.org/air-boot
     265Netlabs Respository   : http://trac.netlabs.org/air-boot/browser/trunk
     266Bug tracking:         : http://trac.netlabs.org/air-boot/report
     267Contact e-mail        : rousseau.os2dev@gmx.com
    270268
    271269
  • trunk/README.md

    r63 r64  
    1616&nbsp;&nbsp;Many text documents contain duplicate, incorrect or obsolete information.<br>
    1717&nbsp;&nbsp;A cleanup will ensure a more up-to-date understanding of the current AirBoot<br>
    18 &nbsp;&nbsp;and it development direction.<br>
     18&nbsp;&nbsp;and its development direction.<br>
    1919
    2020o Removing obsolete source files<br>
  • trunk/bootcode/airboot.md5

    r63 r64  
    1 ceb2087429349e3c619e30c238982c65 *airboot.bin
     1d18ec4b581b32d87a485317e1a31ecd4 *airboot.bin
  • trunk/bootcode/regular/std_text.asm

    r63 r64  
    8383                            db 'For more information and source, please visit:', 0
    8484                            db 'http://svn.netlabs.org/air-boot', 0
    85                             db 'Contact via e-mail: ', 0, 'airboot@ecomstation.com', 0
     85                            db 'Contact via e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
    8686
    8787; Table that points to BIOS device names.
     
    103103; MBR protection; should also be translated and moved.
    104104NonMBRwrite     db  'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
    105 NonMBRwrite_rep db  'Please report this at airboot@ecomstation.com',0
     105NonMBRwrite_rep db  'Please report this at rousseau.os2dev@gmx.com',0
    106106SystemHalted    db  'System Halted',0
    107107
     
    113113tasm_txt        db  'Tasm',0
    114114unknown_txt     db  '????',0
    115 
  • trunk/bootcode/version.inc

    r63 r64  
    3737AB_YEAR             EQU     2016h
    3838AB_MONTH            EQU     10h
    39 AB_DAY              EQU     09h
     39AB_DAY              EQU     10h
    4040
    4141; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
  • trunk/install/c/install.h

    r63 r64  
    3232#define     BLDLVL_YEAR             "2016"
    3333#define     BLDLVL_MONTH            "10"
    34 #define     BLDLVL_DAY              "09"
     34#define     BLDLVL_DAY              "10"
    3535// Build time
    3636//~ #define     BLDLVL_HOURS            "01"
  • trunk/tools/internal/fixcode.h

    r57 r64  
    22#define     __FIXCODE_H__
    33
     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
     32char    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";
    447
    548#if defined(__DOS__)
  • trunk/tools/os2/setaboot/setaboot.h

    r63 r64  
    1818#define     BLDLVL_YEAR             "2016"
    1919#define     BLDLVL_MONTH            "10"
    20 #define     BLDLVL_DAY              "09"
     20#define     BLDLVL_DAY              "10"
    2121// Build time
    2222//~ #define     BLDLVL_HOURS            "01"
Note: See TracChangeset for help on using the changeset viewer.