- Merge from trunk up to r45543
[reactos.git] / boot / 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 ; BootPath - ARC path e.g. multi(0)disk(0)rdisk(x)partition(y)
55 ; DriveMap - maps a BIOS drive number to another (i.e. DriveMap=hd1,hd0 maps harddisk1 to harddisk0 or DriveMap=fd1,fd0)
56
57 ; [BootSector OSType] Section Commands:
58 ;
59 ; BootSector - sets the filename of the bootsector to be loaded
60
61 ; [ReactOS OSType] Section Commands:
62 ;
63 ; SystemPath - sets the system root path (must be a valid ARC - Path):
64 ; multi(0)disk(0)rdisk(0)partition(1)\reactos
65 ; multi(0)disk(0)fdisk(0)
66 ; Options - sets the command line options for the kernel being booted
67 ; Kernel - sets the kernel filename (default: ntoskrnl.exe)
68 ; Hal - sets the HAL filename (default: hal.dll)
69
70
71 [FREELOADER]
72 MessageBox=Welcome to FreeLoader!\nCopyright (c) 2003 by Brian Palmer <brianp@sginet.com>\n\nThis is a sample FreeLoader configuration file.\nEdit FREELDR.INI to change the boot settings.
73 DefaultOS=ReactOSHD
74 TimeOut=10
75
76 ; DisplayMode can be:
77 ; NORMAL_VGA for 80x25
78 ; EXTENDED_VGA for 80x50 on VGA 80x43 on EGA
79 ; 0x501C for 80x28
80 ; 0x501E for 80x30
81 ; 0x5022 for 80x34
82 ; 0x502B for 80x43
83 ; 0x503C for 80x60
84 [Display]
85 DisplayMode=NORMAL_VGA
86 TitleText=Brian\92s Custom FreeLoader Boot Disk
87 StatusBarColor=Cyan
88 StatusBarTextColor=Black
89 BackdropTextColor=White
90 BackdropColor=Blue
91 BackdropFillStyle=Medium
92 TitleBoxTextColor=White
93 TitleBoxColor=Red
94 MessageBoxTextColor=White
95 MessageBoxColor=Blue
96 MenuTextColor=White
97 MenuColor=Blue
98 TextColor=Yellow
99 SelectedTextColor=Black
100 SelectedColor=Gray
101 SpecialEffects=Yes
102
103 [Operating Systems]
104 ReactOSHD="ReactOS (HardDrive)"
105 ReactOSFloppy="ReactOS (Floppy)"
106 Linux="Debian Linux"
107 Floppy="3 1/2 Floppy (A:)"
108 MSWinders="Microsoft Windows (C:)"
109 DriveD="Drive D:"
110
111 ; Load ReactOS from harddisk (drive C:)
112 [ReactOSHD]
113 BootType=ReactOS
114 SystemPath=multi(0)disk(0)rdisk(0)partition(1)\reactos
115 Options=/DEBUGPORT=SCREEN
116 Kernel=\REACTOS\SYSTEM32\NTOSKRNL.EXE
117 Hal=\REACTOS\SYSTEM32\HAL.DLL
118
119 ; Load ReactOS from floppy (drive A:)
120 [ReactOSFloppy]
121 BootType=ReactOS
122 SystemPath=multi(0)disk(0)fdisk(0)
123 Options=/DEBUGPORT=SCREEN
124 Kernel=\reactos\NTOSKRNL.EXE
125 Hal=\reactos\HAL.DLL
126
127 ;[ReactOS (Debug)]
128 ;BootType=ReactOS
129 ;SystemPath=multi(0)disk(0)rdisk(0)partition(1)\reactos
130 ;Options=/DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200
131 ;Kernel=\NTOSKRNL.EXE
132 ;Hal=\HAL.DLL
133
134 [Linux]
135 BootType=Linux
136 BootPath=multi(0)disk(0)rdisk(1)partition(1)
137 Kernel=/vmlinuz
138 Initrd=/initrd.img
139 CommandLine="root=/dev/sdb1"
140
141 [Floppy]
142 BootType=Drive
143 BootDrive=fd0
144
145 [MSWinders]
146 BootType=Partition
147 BootPath=multi(0)disk(0)rdisk(0)partition(1)
148 ;DriveMap=hd1,hd0
149 ;DriveMap=hd2,hd0
150 ;DriveMap=hd3,hd0
151
152 [DriveD]
153 BootType=Partition
154 BootPath=multi(0)disk(0)rdisk(1)partition(1)