Rudimentiary drivebar support added.
[reactos.git] / freeldr / FREELDR.INI
1 ; FreeLoader by Brian Palmer
2 ; FREELDR.INI - FreeLoader Initialization file
3 ;
4 ; Each line must be less than 1024 characters long
5 ; and must be either a section heading (i.e. [section_name])
6 ; or a setting (i.e. name=value) or a blank line.
7 ; Comments start with a ';' character.
8
9 ; Background colors can be any one of the following:
10 ; Black
11 ; Blue
12 ; Green
13 ; Cyan
14 ; Red
15 ; Magenta
16 ; Brown
17 ; Gray
18
19 ; Text colors can be any one of the background
20 ; colors and any of the following:
21 ; DarkGray
22 ; LightBlue
23 ; LightGreen
24 ; LightCyan
25 ; LightRed
26 ; LightMagenta
27 ; Yellow
28 ; White
29
30 ; [FREELOADER] Section Commands:
31 ;
32 ; MessageBox - displays the specified text in a message box upon bootup
33 ; MessageLine - adds a new line of text to a message box (must come before MessageBox command)
34 ; TitleText - text that is displayed in the title box
35 ; StatusBarColor - color of status bar's background
36 ; StatusBarTextColor - color of status bar's text
37 ; BackdropTextColor - color of the backdrop's fill
38 ; BackdropColor - color of the backdrop's background
39 ; BackdropFillStyle - backdrop fill style - can be Light, Medium, or Dark
40 ; TitleBoxTextColor - title box text color
41 ; TitleBoxColor - title box background color
42 ; MessageBoxTextColor - message box text color
43 ; MessageBoxColor - message box background color
44 ; MenuTextColor - menu text color
45 ; MenuColor - menu color
46 ; TextColor - normal text color
47 ; SelectedTextColor - selected text color
48 ; SelectedColor - selected text background color
49 ; TimeOut - sets the timeout (in seconds) before the first OS listed gets booted automagically
50
51 ; [OS-General] Section Commands:
52 ;
53 ; BootType - sets the boot type: ReactOS, Linux, BootSector, Partition, Drive
54 ; BootDrive - sets the boot drive: 0 - first floppy, 1 - second floppy, 0x80 - first hard disk, 0x81 - second hard disk
55 ; BootPartition - sets the boot partition
56 ; DriveMap - maps a BIOS drive number to another (i.e. DriveMap=hd1,hd0 maps harddisk1 to harddisk0 or DriveMap=fd1,fd0)
57
58 ; [BootSector OSType] Section Commands:
59 ;
60 ; BootSector - sets the filename of the bootsector to be loaded
61
62 ; [ReactOS OSType] Section Commands:
63 ;
64 ; SystemPath - sets the system root path (must be a valid ARC - Path):
65 ; multi(0)disk(0)rdisk(0)partition(1)\reactos
66 ; multi(0)disk(0)fdisk(0)
67 ; Options - sets the command line options for the kernel being booted
68 ; Kernel - sets the kernel filename
69 ; Driver - sets the name of one or more drivers to be loaded (one entry per driver)
70
71
72
73 [FREELOADER]
74 MessageLine=Welcome to FreeLoader!
75 MessageLine=Copyright (c) 2002 by Brian Palmer <brianp@sginet.com>
76 MessageLine=
77 MessageBox=Edit your FREELDR.INI file to change your boot settings.
78 OS=ReactOS (HD)
79 OS=ReactOS (Floppy)
80 ;OS=ReactOS (Debug)
81 OS=Linux
82 OS=LinuxInitrd
83 OS=3« Floppy (A:)
84 OS=Microsoft Windows (C:)
85 OS=Drive D:
86 DefaultOS=ReactOS (Floppy)
87 TimeOut=10
88
89 ; DisplayMode can be:
90 ; NORMAL_VGA for 80x25
91 ; EXTENDED_VGA for 80x50 on VGA 80x43 on EGA
92 ; 0x501C for 80x28
93 ; 0x501E for 80x30
94 ; 0x5022 for 80x34
95 ; 0x502B for 80x43
96 ; 0x503C for 80x60
97 [Display]
98 DisplayMode=NORMAL_VGA
99 TitleText=Boot Menu
100 StatusBarColor=Cyan
101 StatusBarTextColor=Black
102 BackdropTextColor=White
103 BackdropColor=Blue
104 BackdropFillStyle=Medium
105 TitleBoxTextColor=White
106 TitleBoxColor=Red
107 MessageBoxTextColor=White
108 MessageBoxColor=Blue
109 MenuTextColor=White
110 MenuColor=Blue
111 TextColor=Yellow
112 SelectedTextColor=Black
113 SelectedColor=Gray
114
115 ; Load ReactOS from harddisk (drive C:)
116 [ReactOS (HD)]
117 Name="ReactOS (HardDrive)"
118 BootType=ReactOS
119 SystemPath=multi(0)disk(0)rdisk(0)partition(1)\reactos
120 Options=/DEBUGPORT=SCREEN
121 Kernel=\REACTOS\SYSTEM32\NTOSKRNL.EXE
122 Hal=\REACTOS\SYSTEM32\HAL.DLL
123 Driver=\REACTOS\SYSTEM32\DRIVERS\IDE.SYS
124 Driver=\REACTOS\SYSTEM32\DRIVERS\VFATFS.SYS
125
126 ; Load ReactOS from floppy (drive A:)
127 [ReactOS (Floppy)]
128 Name="ReactOS (Floppy)"
129 BootType=ReactOS
130 SystemPath=multi(0)disk(0)fdisk(0)
131 Options=/DEBUGPORT=SCREEN
132 Kernel=\reactos\NTOSKRNL.EXE
133 Hal=\reactos\HAL.DLL
134 Driver=\reactos\IDE.SYS
135 Driver=\reactos\VFATFS.SYS
136
137 ;[ReactOS (Debug)]
138 ;Name="ReactOS (Debug)"
139 ;BootType=ReactOS
140 ;BootDrive=0
141 ;Options=/DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200
142 ;Kernel=\NTOSKRNL.EXE
143 ;Hal=\HAL.DLL
144 ;Driver=\DRIVERS\IDE.SYS
145 ;Driver=\DRIVERS\VFATFS.SYS
146
147 [Linux]
148 Name="Debian Linux 2.2.17"
149 BootType=Linux
150 BootDrive=0
151 Kernel=/vmlinuz
152 CommandLine="root=/dev/sdb1"
153
154 [Linux]
155 Name="Linux w/Initrd"
156 BootType=Linux
157 BootDrive=0x80
158 BootPartition=1
159 Kernel=/vmlinuz
160 Initrd=/initrd.gz
161 CommandLine=
162
163 [3« Floppy (A:)]
164 Name="3« Floppy (A:)"
165 BootType=Drive
166 BootDrive=0
167
168 [Microsoft Windows (C:)]
169 Name="Microsoft Windows (C:)"
170 BootType=Drive
171 BootDrive=0x80
172
173 [Drive D:]
174 Name="Drive D:"
175 BootType=Partition
176 BootDrive=0x81
177 BootPartition=1