1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
#
# Choose-OS 0.81 example configuration file.
#
#
# Interface that uses a background image.
#
#############################################################################
# Use a background image
#
background=dump:/boot/bg/chos08.bin
timerpos=44,9
selection=lightgray
infoline=off
color=white
#
# General stuff
#
#############################################################################
# wait 30 secs before bootin' the first image
#
delay=30
# Install the boot sector on /dev/hda (makes it MBR).
#
install=/dev/hda
# Want emergency boot sector ?
#
#emergency=/dev/hda1
#
# Next are the boot images...
#
#############################################################################
# a Linux kernel image
#
# set 80x50 video mode (80x25 sucked on the old 14" monitor and sucks even
# more on the new 17" monitor).
linux "Linux" {
image=/boot/vmlinuz-uusin
cmdline= vga=EXTENDED
color=lightblue
hotkey=L,hidden
position=36,10
}
# a DOS bootsector
#
bootsect "DOS" {
image=/dev/hda1
color=blue
hotkey=D,hidden
position=37,11
}
linux "Linux-old" {
image=/boot/vmlinuz
cmdline= vga=EXTENDED
color=darkgray
hotkey=O,hidden
position=35,12
}
|