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

Last change on this file since 188 was 188, checked in by Ben Rietbroek, 8 years ago

Added 'RELEASE' option for building a RELEASE version [v1.1.1-testing]

Formerly this was done by editing the related files, which is kinda
annoying when using versioning. With this new method it is more easy
to test release builds while developing.

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

File size: 3.9 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
29
30;
31; Copyright header on top of screen
32;
33Copyright:
34IFDEF RELEASE
35 ;
36 ; Copyright header as displayed on RELEASE version
37 ;
38 db ' AiR-BOOT v'
39 db BLDLVL_MAJOR_VERSION,'.'
40 db BLDLVL_MIDDLE_VERSION,'.'
41 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
42 db BLDLVL_YEAR
43 db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'
44 db 0
45ELSE
46 ;
47 ; Copyright header as displayed on TESTBUILD version
48 ;
49 db ' AiR-BOOT v'
50 db BLDLVL_MAJOR_VERSION,'.'
51 db BLDLVL_MIDDLE_VERSION,'.'
52 db BLDLVL_MINOR_VERSION,' - (c) 1998-'
53 db BLDLVL_YEAR
54 db ' M. Kiewitz << Test Build >> (bld:'
55 db BLDLVL_YEAR
56 db BLDLVL_MONTH
57 db BLDLVL_DAY,')'
58 db 0
59ENDIF
60
61; Length of version string to copy when displayed in menu and just before
62; booting the selected system.
63CopyrightVersionLen equ 6
64
65; License and source info.
66BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
67BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
68
69; Bugger...
70CheckID_MBR db 'AiRBOOT'
71BrokenHDD db ' (HDDx)', 0
72
73; Colors for special words hard-coded. Keep all 0s.
74TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+', 0
75 db 'http://www.gnu.org/licenses/gpl.txt', 0
76 db 'For more information and source, please visit:', 0
77 db 'http://svn.netlabs.org/air-boot', 0
78 db 'Contact via e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
79
80; Table that points to BIOS device names.
81ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM
82 dw offset TXT_SETUP_MAGIC_Network
83 dw offset TXT_SETUP_MAGIC_ZIPLS
84 dw 0
85
86; LVM protection messages; should be translated and moved to lang-files.
87TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
88TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
89TXT_BootMenuPowerOff db 'DEL to Power Off', 0
90TXT_NoINT13XSupport db 'This BIOS does not support Extended INT13h Functions', 0
91;~ TXT_ERROR_TooManyPartitions db 'Too many partitions! -- Proper operation not guaranteed!', 0
92
93; MBR protection; should also be translated and moved.
94NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
95NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0
96SystemHalted db 'System Halted',0
97
98; Build Information string.
99build_date db 'Build Date: ',0
100scanning_txt db 'Scanning...',0
Note: See TracBrowser for help on using the repository browser.