2002-03-20 00:39:32 +00:00
; FreeLoader by Brian Palmer
; FREELDR.INI - FreeLoader Initialization file
;
; Each line must be less than 1024 characters long
; and must be either a section heading (i.e. [section_name])
; or a setting (i.e. name=value) or a blank line.
; Comments start with a ';' character.
; Background colors can be any one of the following:
; Black
; Blue
; Green
; Cyan
; Red
; Magenta
; Brown
; Gray
; Text colors can be any one of the background
; colors and any of the following:
; DarkGray
; LightBlue
; LightGreen
; LightCyan
; LightRed
; LightMagenta
; Yellow
; White
; [FREELOADER] Section Commands:
;
; MessageBox - displays the specified text in a message box upon bootup
; MessageLine - adds a new line of text to a message box (must come before MessageBox command)
; TitleText - text that is displayed in the title box
; StatusBarColor - color of status bar's background
; StatusBarTextColor - color of status bar's text
; BackdropTextColor - color of the backdrop's fill
; BackdropColor - color of the backdrop's background
; BackdropFillStyle - backdrop fill style - can be Light, Medium, or Dark
; TitleBoxTextColor - title box text color
; TitleBoxColor - title box background color
; MessageBoxTextColor - message box text color
; MessageBoxColor - message box background color
; MenuTextColor - menu text color
; MenuColor - menu color
; TextColor - normal text color
; SelectedTextColor - selected text color
; SelectedColor - selected text background color
; TimeOut - sets the timeout (in seconds) before the first OS listed gets booted automagically
; [OS-General] Section Commands:
;
; BootType - sets the boot type: ReactOS, Linux, BootSector, Partition, Drive
; BootDrive - sets the boot drive: 0 - first floppy, 1 - second floppy, 0x80 - first hard disk, 0x81 - second hard disk
; BootPartition - sets the boot partition
2002-07-22 03:44:08 +00:00
; DriveMap - maps a BIOS drive number to another (i.e. DriveMap=hd1,hd0 maps harddisk1 to harddisk0 or DriveMap=fd1,fd0)
2002-03-20 00:39:32 +00:00
; [BootSector OSType] Section Commands:
;
; BootSector - sets the filename of the bootsector to be loaded
; [ReactOS OSType] Section Commands:
;
; SystemPath - sets the system root path (must be a valid ARC - Path):
; multi(0)disk(0)rdisk(0)partition(1)\reactos
; multi(0)disk(0)fdisk(0)
; Options - sets the command line options for the kernel being booted
2003-05-19 09:51:34 +00:00
; Kernel - sets the kernel filename (default: ntoskrnl.exe)
; Hal - sets the HAL filename (default: hal.dll)
2001-05-15 03:50:25 +00:00
2003-01-31 02:44:32 +00:00
2001-05-15 03:50:25 +00:00
[FREELOADER]
2003-01-31 02:44:32 +00:00
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.
DefaultOS = ReactOSHD
2001-11-15 07:48:33 +00:00
TimeOut = 10
2002-06-06 05:58:37 +00:00
; DisplayMode can be:
; NORMAL_VGA for 80x25
; EXTENDED_VGA for 80x50 on VGA 80x43 on EGA
; 0x501C for 80x28
; 0x501E for 80x30
; 0x5022 for 80x34
; 0x502B for 80x43
; 0x503C for 80x60
2001-11-15 07:48:33 +00:00
[Display]
2002-06-06 05:58:37 +00:00
DisplayMode = NORMAL_VGA
2003-01-31 02:44:32 +00:00
TitleText = Brian<EFBFBD> s Custom FreeLoader Boot Disk
2001-05-15 03:50:25 +00:00
StatusBarColor = Cyan
StatusBarTextColor = Black
BackdropTextColor = White
BackdropColor = Blue
BackdropFillStyle = Medium
TitleBoxTextColor = White
TitleBoxColor = Red
MessageBoxTextColor = White
MessageBoxColor = Blue
MenuTextColor = White
MenuColor = Blue
TextColor = Yellow
SelectedTextColor = Black
SelectedColor = Gray
2003-01-31 02:44:32 +00:00
SpecialEffects = Yes
[Operating Systems]
ReactOSHD = "ReactOS (HardDrive)"
ReactOSFloppy = "ReactOS (Floppy)"
Linux = "Debian Linux"
Floppy = "3 1/2 Floppy (A:)"
MSWinders = "Microsoft Windows (C:)"
DriveD = "Drive D:"
2001-05-15 03:50:25 +00:00
2002-03-20 00:39:32 +00:00
; Load ReactOS from harddisk (drive C:)
2003-01-31 02:44:32 +00:00
[ReactOSHD]
2001-06-08 17:46:52 +00:00
BootType = ReactOS
SystemPath = multi(0)disk(0)rdisk(0)partition(1)\reactos
Options = /DEBUGPORT=SCREEN
2001-11-16 20:27:59 +00:00
Kernel = \REACTOS\SYSTEM32\NTOSKRNL.EXE
Hal = \REACTOS\SYSTEM32\HAL.DLL
2001-06-08 17:46:52 +00:00
2002-03-20 00:39:32 +00:00
; Load ReactOS from floppy (drive A:)
2003-01-31 02:44:32 +00:00
[ReactOSFloppy]
2001-06-08 17:46:52 +00:00
BootType = ReactOS
SystemPath = multi(0)disk(0)fdisk(0)
Options = /DEBUGPORT=SCREEN
2001-11-15 07:48:33 +00:00
Kernel = \reactos\NTOSKRNL.EXE
2001-11-16 20:27:59 +00:00
Hal = \reactos\HAL.DLL
2001-05-15 03:50:25 +00:00
2002-03-20 00:39:32 +00:00
;[ReactOS (Debug)]
;BootType=ReactOS
2003-05-19 09:51:34 +00:00
;SystemPath=multi(0)disk(0)rdisk(0)partition(1)\reactos
2002-03-20 00:39:32 +00:00
;Options=/DEBUG /DEBUGPORT=COM1 /BAUDRATE=19200
;Kernel=\NTOSKRNL.EXE
;Hal=\HAL.DLL
2002-04-25 02:48:15 +00:00
[Linux]
2002-04-28 20:31:42 +00:00
BootType = Linux
2003-01-31 02:44:32 +00:00
BootDrive = hd1
2002-04-30 06:26:33 +00:00
BootPartition = 1
Kernel = /vmlinuz
2003-01-31 02:44:32 +00:00
Initrd = /initrd.img
CommandLine = "root=/dev/sdb1"
2002-04-30 06:26:33 +00:00
2003-01-31 02:44:32 +00:00
[Floppy]
2001-05-15 03:50:25 +00:00
BootType = Drive
2003-01-31 02:44:32 +00:00
BootDrive = fd0
2001-05-15 03:50:25 +00:00
2003-01-31 02:44:32 +00:00
[MSWinders]
BootType = Partition
BootDrive = hd0
BootPartition = 1
;DriveMap=hd1,hd0
;DriveMap=hd2,hd0
;DriveMap=hd3,hd0
2001-05-15 03:50:25 +00:00
2003-01-31 02:44:32 +00:00
[DriveD]
2001-05-15 03:50:25 +00:00
BootType = Partition
2003-01-31 02:44:32 +00:00
BootDrive = hd1
2001-05-15 03:50:25 +00:00
BootPartition = 1