Subversion Repositories Kolibri OS

Rev

Rev 2288 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
2455 mario79 3
;; Copyright (C) KolibriOS team 2004-2011. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
;======================================================================
9
;
10
;                           BOOT DATA
11
;
12
;======================================================================
13
 
14
$Revision: 2455 $
15
 
16
 
17
d80x25_bottom:
18
          db       186,' KolibriOS is based on MenuetOS and comes with ABSOLUTELY '
19
          db       'NO WARRANTY         ',186
20
          db       186,' See file COPYING for details                             '
21
          db       '                    ',186
22
          line_full_bottom
23
d80x25_bottom_num = 3
24
 
25
msg_apm   db      " APM x.x ", 0
26
novesa    db      "Display: EGA/CGA",13,10,0
27
s_vesa    db      "Version of VESA: "
28
  .ver    db      "?.?",13,10,0
29
 
30
gr_mode   db      "Select a videomode: ",13,10,0
31
 
32
ask_bd     db      "Add disks visible by BIOS emulated in V86-mode? [1-yes, 2-no]: ",0
33
 
34
if defined extended_primary_loader
35
bdev      db      "Load ramdisk from [1-floppy; 2-kolibri.img]: ",0
36
else
37
bdev      db      "Load ramdisk from [1-floppy; 2-C:\kolibri.img (FAT32);"
38
          db      13,10,186,"                    "
39
          db      "3-use preloaded ram-image from kernel restart;"
40
          db      13,10,186,"                    "
41
          db      "4-create blank image]: ",0
42
end if
43
 
44
prnotfnd  db      "Fatal - Videomode not found.",0
45
 
46
not386    db      "Fatal - CPU 386+ required.",0
47
fatalsel  db      "Fatal - Graphics mode not supported by hardware.",0
48
pres_key  db      "Press any key to choose a new videomode.",0
49
badsect   db      13,10,186," Fatal - Bad sector. Replace floppy.",0
50
memmovefailed db  13,10,186," Fatal - Int 0x15 move failed.",0
51
okt       db      " ... OK"
52
linef     db      13,10,0
53
diskload  db      "Loading diskette: 00 %",8,8,8,8,0
54
pros      db      "00"
55
backspace2 db     8,8,0
56
boot_dev  db      0  ; 0=floppy, 1=hd
57
start_msg db      "Press [abcd] to change settings, press [Enter] to continue booting",13,10,0
58
time_msg  db      " or wait "
59
time_str  db      " 5 seconds"
60
          db      " before automatical continuation",13,10,0
61
current_cfg_msg db "Current settings:",13,10,0
62
curvideo_msg db   " [a] Videomode: ",0
63
 
64
mode0     db      "320x200, EGA/CGA 256 colors",13,10,0
65
mode9     db      "640x480, VGA 16 colors",13,10,0
66
 
67
usebd_msg db      " [b] Add disks visible by BIOS:",0
68
on_msg    db      " on",13,10,0
69
off_msg   db      " off",13,10,0
70
 
71
preboot_device_msg db " [c] Floppy image: ",0
72
 
73
if defined extended_primary_loader
74
preboot_device_msgs dw 0,pdm1,pdm2,0
75
pdm1      db      "real floppy",13,10,0
76
pdm2      db      "C:\kolibri.img (FAT32)",13,10,0
77
else
78
preboot_device_msgs dw 0,pdm1,pdm2,pdm3
79
pdm1      db      "real floppy",13,10,0
80
pdm2      db      "C:\kolibri.img (FAT32)",13,10,0
81
pdm3      db      "use already loaded image",13,10,0
82
pdm4      db      "create blank image",13,10,0
83
end if
84
 
85
loading_msg db    "Loading KolibriOS...",0
86
 
87
if ~ defined extended_primary_loader
88
save_quest db     "Remember current settings? [y/n]: ",0
89
loader_block_error db "Bootloader data invalid, I cannot continue. Stopped.",0
90
end if
91
 
92
_st db 186,'                   ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄ¿',13,10,0
93
_r1 db 186,'                   ³  320x200  EGA/CGA 256 colors  ³ ³',13,10,0
94
_r2 db 186,'                   ³  640x480  VGA 16 colors       ³ ³',13,10,0
95
_rs db 186,'                   ³  ????x????@??  SVGA VESA      ³ ³',13,10,0
96
_bt db 186,'                   ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÙ',13,10,0
97
 
98
remark1 db      "Default values were selected to match most of configurations, but not all.",0
99
remark2 db      "If the system does not boot, try to disable the item [b].",0
100
remarks dw      remark1, remark2
101
num_remarks = 2