updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / syslinux-git / syslinux.cfg
blob2212283a833358165704ad04b80adbef2cd9608a
1 # Config file for Syslinux -
2 # /boot/syslinux/syslinux.cfg
4 # Comboot modules:
5 #   * menu.c32 - provides a text menu
6 #   * vesamenu.c32 - provides a graphical menu
7 #   * chain.c32 - chainload MBRs, partition boot sectors, Windows bootloaders
8 #   * hdt.c32 - hardware detection tool
9 #   * reboot.c32 - reboots the system
10 #   * poweroff.com - shutdown the system
12 # To Use: Copy the respective files from /usr/lib/syslinux to /boot/syslinux.
13 # If /usr and /boot are on the same file system, symlink the files instead
14 # of copying them.
16 # If you do not use a menu, a 'boot:' prompt will be shown and the system
17 # will boot automatically after 5 seconds.
19 # Please review the wiki: https://wiki.archlinux.org/index.php/Syslinux
20 # The wiki provides further configuration examples
22 DEFAULT arch
23 PROMPT 0        # Change to 1 if you do not want to use a menu
24 TIMEOUT 50
25 # You can create syslinux keymaps with the keytab-lilo tool
26 #KBDMAP de.ktl
28 # Menu Configuration
29 # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux 
30 UI menu.c32
31 #UI vesamenu.c32
33 # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
34 MENU TITLE Arch Linux
35 #MENU BACKGROUND splash.png
36 MENU COLOR border       30;44   #40ffffff #a0000000 std
37 MENU COLOR title        1;36;44 #9033ccff #a0000000 std
38 MENU COLOR sel          7;37;40 #e0ffffff #20ffffff all
39 MENU COLOR unsel        37;44   #50ffffff #a0000000 std
40 MENU COLOR help         37;40   #c0ffffff #a0000000 std
41 MENU COLOR timeout_msg  37;40   #80ffffff #00000000 std
42 MENU COLOR timeout      1;37;40 #c0ffffff #00000000 std
43 MENU COLOR msg07        37;40   #90ffffff #a0000000 std
44 MENU COLOR tabmsg       31;40   #30ffffff #00000000 std
46 # boot sections follow
48 # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
50 #-*
52 LABEL arch
53         MENU LABEL Arch Linux
54         LINUX ../vmlinuz26
55         APPEND root=/dev/sda3 ro
56         INITRD ../kernel26.img
58 LABEL archfallback
59         MENU LABEL Arch Linux Fallback
60         LINUX ../vmlinuz26
61         APPEND root=/dev/sda3 ro
62         INITRD ../kernel26-fallback.img
64 #LABEL windows
65 #        MENU LABEL Windows
66 #        COM32 chain.c32
67 #        APPEND hd0 1
69 LABEL hdt
70         MENU LABEL HDT (Hardware Detection Tool)
71         COM32 hdt.c32
73 LABEL reboot
74         MENU LABEL Reboot
75         COM32 reboot.c32
77 LABEL off
78         MENU LABEL Power Off
79         COMBOOT poweroff.com