[29] | 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 | ;
|
---|
[8] | 18 | ;---------------------------------------------------------------------------
|
---|
| 19 | ; AiR-BOOT / TEXT
|
---|
| 20 | ;---------------------------------------------------------------------------
|
---|
| 21 |
|
---|
[51] | 22 | IFDEF MODULE_NAMES
|
---|
[30] | 23 | DB 'STD_TEXT',0
|
---|
| 24 | ENDIF
|
---|
| 25 |
|
---|
[29] | 26 | ; If you modify this Copyright and release this under your own name,
|
---|
[46] | 27 | ; I'm going to sue your cheap ass, rape your dog and blow up your house. =)
|
---|
[8] | 28 |
|
---|
[36] | 29 |
|
---|
[46] | 30 | ;
|
---|
[188] | 31 | ; Copyright header on top of screen
|
---|
[46] | 32 | ;
|
---|
| 33 | Copyright:
|
---|
[188] | 34 | IFDEF RELEASE
|
---|
| 35 | ;
|
---|
| 36 | ; Copyright header as displayed on RELEASE version
|
---|
| 37 | ;
|
---|
[51] | 38 | db ' AiR-BOOT v'
|
---|
| 39 | db BLDLVL_MAJOR_VERSION,'.'
|
---|
| 40 | db BLDLVL_MIDDLE_VERSION,'.'
|
---|
[54] | 41 | db BLDLVL_MINOR_VERSION,' - (c) 1998-'
|
---|
[51] | 42 | db BLDLVL_YEAR
|
---|
[188] | 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
|
---|
[63] | 54 | db ' M. Kiewitz << Test Build >> (bld:'
|
---|
| 55 | db BLDLVL_YEAR
|
---|
| 56 | db BLDLVL_MONTH
|
---|
| 57 | db BLDLVL_DAY,')'
|
---|
[51] | 58 | db 0
|
---|
[188] | 59 | ENDIF
|
---|
[46] | 60 |
|
---|
[188] | 61 | ; Length of version string to copy when displayed in menu and just before
|
---|
| 62 | ; booting the selected system.
|
---|
| 63 | CopyrightVersionLen equ 6
|
---|
[46] | 64 |
|
---|
[246] | 65 | IF NOT BLD_LANG_TXT EQ 'es'
|
---|
[51] | 66 | ; License and source info.
|
---|
| 67 | BootEndMsg db 'This is GPLv3+ software, please visit: http://www.gnu.org/licenses/gpl.txt', 0
|
---|
| 68 | BootEndMsg2 db 'To obtain the sources, please visit: http://svn.netlabs.org/air-boot', 0
|
---|
[246] | 69 | ENDIF
|
---|
[45] | 70 |
|
---|
[51] | 71 | ; Bugger...
|
---|
| 72 | CheckID_MBR db 'AiRBOOT'
|
---|
| 73 | BrokenHDD db ' (HDDx)', 0
|
---|
[30] | 74 |
|
---|
[244] | 75 | IF NOT BLD_LANG_TXT EQ 'es'
|
---|
[29] | 76 | ; Colors for special words hard-coded. Keep all 0s.
|
---|
[36] | 77 | TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+', 0
|
---|
[30] | 78 | db 'http://www.gnu.org/licenses/gpl.txt', 0
|
---|
[36] | 79 | db 'For more information and source, please visit:', 0
|
---|
[31] | 80 | db 'http://svn.netlabs.org/air-boot', 0
|
---|
[231] | 81 | db 'Contact by e-mail: ', 0, 'rousseau.os2dev@gmx.com', 0
|
---|
[244] | 82 | ENDIF
|
---|
[29] | 83 |
|
---|
[51] | 84 | ; Table that points to BIOS device names.
|
---|
| 85 | ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM
|
---|
| 86 | dw offset TXT_SETUP_MAGIC_Network
|
---|
| 87 | dw offset TXT_SETUP_MAGIC_ZIPLS
|
---|
| 88 | dw 0
|
---|
| 89 |
|
---|
[244] | 90 | IF NOT BLD_LANG_TXT EQ 'es'
|
---|
[51] | 91 | ; LVM protection messages; should be translated and moved to lang-files.
|
---|
| 92 | TXT_SETUP_NoEditType35 db 'Labels of LVM-Data partitions cannot be changed', 0
|
---|
| 93 | TXT_SETUP_NoBootType35 db 'LVM-Data partitions cannot be set bootable', 0
|
---|
| 94 | TXT_BootMenuPowerOff db 'DEL to Power Off', 0
|
---|
| 95 | TXT_NoINT13XSupport db 'This BIOS does not support Extended INT13h Functions', 0
|
---|
| 96 | ;~ TXT_ERROR_TooManyPartitions db 'Too many partitions! -- Proper operation not guaranteed!', 0
|
---|
| 97 |
|
---|
| 98 | ; MBR protection; should also be translated and moved.
|
---|
| 99 | NonMBRwrite db 'AiR-BOOT TRIED TO WRITE A non-MBR TO DISK !!',0
|
---|
[64] | 100 | NonMBRwrite_rep db 'Please report this at rousseau.os2dev@gmx.com',0
|
---|
[51] | 101 | SystemHalted db 'System Halted',0
|
---|
| 102 |
|
---|
[46] | 103 | ; Build Information string.
|
---|
[163] | 104 | build_date db 'Build Date: ',0
|
---|
[165] | 105 | scanning_txt db 'Scanning...',0
|
---|
[244] | 106 | ENDIF
|
---|