source: trunk/bootcode/regular/std_text.asm@ 63

Last change on this file since 63 was 63, checked in by Ben Rietbroek, 9 years ago

Updated Build Info and added File Commander Build Menus [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

Changes:
o Updated Build Info
o Added simple File Commander Build Menus
o Removed tabs from non-recipe sections in Makefiles

Notes:
o RU version currently does not build due to lack of code-space

Will be resolved when FX-code is removed from build.

File size: 5.5 KB
Line 
1; AiR-BOOT (c) Copyright 1998-2008 M. Kiewitz
2;
3; This file is part of AiR-BOOT
4;
5; AiR-BOOT is free software: you can redistribute it and/or modify it under
6; the terms of the GNU General Public License as published by the Free
7; Software Foundation, either version 3 of the License, or (at your option)
8; any later version.
9;
10; AiR-BOOT is distributed in the hope that it will be useful, but WITHOUT ANY
11; WARRANTY: without even the implied warranty of MERCHANTABILITY or FITNESS
12; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13; details.
14;
15; You should have received a copy of the GNU General Public License along with
16; AiR-BOOT. If not, see <http://www.gnu.org/licenses/>.
17;
18;---------------------------------------------------------------------------
19; AiR-BOOT / TEXT
20;---------------------------------------------------------------------------
21
22IFDEF MODULE_NAMES
23DB 'STD_TEXT',0
24ENDIF
25
26; If you modify this Copyright and release this under your own name,
27; I'm going to sue your cheap ass, rape your dog and blow up your house. =)
28
29CopyrightVersionLen 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
47
48;
49; Masm found the above to be too complex, so we broke it up.
50;
51Copyright:
52 db ' AiR-BOOT v'
53 db BLDLVL_MAJOR_VERSION,'.'
54 db BLDLVL_MIDDLE_VERSION,'.'
55 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
56 db BLDLVL_YEAR
57 ;~ db ' M. Kiewitz <<Release Candidate 4>> (bld: '
58 db ' M. Kiewitz << Test Build >> (bld:'
59 ;~ db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'
60 db BLDLVL_YEAR
61 db BLDLVL_MONTH
62 db BLDLVL_DAY,')'
63 db 0
64
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
71
72; License and source info.
73BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
74BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
75
76; Bugger...
77CheckID_MBR db 'AiRBOOT'
78BrokenHDD db ' (HDDx)', 0
79
80; Colors for special words hard-coded. Keep all 0s.
81TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+', 0
82 db 'http://www.gnu.org/licenses/gpl.txt', 0
83 db 'For more information and source, please visit:', 0
84 db 'http://svn.netlabs.org/air-boot', 0
85 db 'Contact via e-mail: ', 0, 'airboot@ecomstation.com', 0
86
87; Table that points to BIOS device names.
88ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM
89 dw offset TXT_SETUP_MAGIC_Network
90 dw offset TXT_SETUP_MAGIC_ZIPLS
91 dw 0
92
93; Com-port debugging header.
94AuxInitMsg db 'Initializing Serial Communications on COM',0
95
96; LVM protection messages; should be translated and moved to lang-files.
97TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
98TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
99TXT_BootMenuPowerOff db 'DEL to Power Off', 0
100TXT_NoINT13XSupport db 'This BIOS does not support Extended INT13h Functions', 0
101;~ TXT_ERROR_TooManyPartitions db 'Too many partitions! -- Proper operation not guaranteed!', 0
102
103; MBR protection; should also be translated and moved.
104NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
105NonMBRwrite_rep db 'Please report this at airboot@ecomstation.com',0
106SystemHalted db 'System Halted',0
107
108; Build Information string.
109build_info db 'Build Date: ',0
110jwasm_txt db 'JWasm',0
111masm_txt db 'Masm',0
112wasm_txt db 'Wasm',0
113tasm_txt db 'Tasm',0
114unknown_txt db '????',0
115
Note: See TracBrowser for help on using the repository browser.