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 |
|
---|
22 | IFDEF MODULE_NAMES
|
---|
23 | DB 'STD_TEXT',0
|
---|
24 | ENDIF
|
---|
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 | ;
|
---|
33 | Copyright:
|
---|
34 | IFDEF 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
|
---|
45 | ELSE
|
---|
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
|
---|
59 | ENDIF
|
---|
60 |
|
---|
61 | ; Length of version string to copy when displayed in menu and just before
|
---|
62 | ; booting the selected system.
|
---|
63 | CopyrightVersionLen equ 6
|
---|
64 |
|
---|
65 | ; License and source info.
|
---|
66 | BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
|
---|
67 | BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
|
---|
68 |
|
---|
69 | ; Bugger...
|
---|
70 | CheckID_MBR db 'AiRBOOT'
|
---|
71 | BrokenHDD db ' (HDDx)', 0
|
---|
72 |
|
---|
73 | ; Colors for special words hard-coded. Keep all 0s.
|
---|
74 | TXT_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 by e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
|
---|
79 |
|
---|
80 | ; Table that points to BIOS device names.
|
---|
81 | ContinueBIOSbootTable 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.
|
---|
87 | TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
|
---|
88 | TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
|
---|
89 | TXT_BootMenuPowerOff db 'DEL to Power Off', 0
|
---|
90 | TXT_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.
|
---|
94 | NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
|
---|
95 | NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0
|
---|
96 | SystemHalted db 'System Halted',0
|
---|
97 |
|
---|
98 | ; Build Information string.
|
---|
99 | build_date db 'Build Date: ',0
|
---|
100 | scanning_txt db 'Scanning...',0
|
---|