Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
syslinux [2015/06/01 17:33]
steve
syslinux [2015/06/07 23:29]
steve
Line 1: Line 1:
 ====== syslinux ====== ====== syslinux ======
 +
 +  * [[https://​wiki.archlinux.org/​index.php/​Syslinux|Arch Linux: Syslinux]]
  
 ==== EXTLINUX GPT Installation ==== ==== EXTLINUX GPT Installation ====
Line 46: Line 48:
 <​code>​ <​code>​
 extlinux --install /​boot/​extlinux/​ extlinux --install /​boot/​extlinux/​
 +</​code>​
 +
 +Here's an example of a longer ''​extlinux.conf'',​ with version 6.00 and above:
 +
 +<​code>​
 +TIMEOUT 100
 +ONTIMEOUT gentoo-3.14.24-ck
 +
 +UI menu.c32
 +MENU TITLE Boot
 +
 +LABEL gentoo-3.14.24-ck
 + MENU LABEL Gentoo Linux 3.14.24-ck
 + LINUX /​boot/​vmlinuz-3.14.24-ck root=/​dev/​sda1 quiet
 +
 +LABEL gentoo-ck2
 + MENU LABEL Gentoo Linux 3.14.4-ck (quiet)
 + LINUX /​boot/​vmlinuz-3.14.4-ck root=/​dev/​sda1 quiet
 +
 +LABEL gentoo-ck2-quiet
 + MENU LABEL Gentoo Linux 3.14.4-ck
 + LINUX /​boot/​vmlinuz-3.14.4-ck root=/​dev/​sda1
 +
 +LABEL windows7
 + MENU LABEL Windows 7
 + COM32 chain.c32
 + # APPEND hd1 2
 + APPEND mbr:​1FF400E3-1632-43B4-BDEA-FC2D558E23F0
 +
 +LABEL reboot
 + MENU LABEL Reboot
 + COM32 reboot.c32
 +
 +LABEL poweroff
 + MENU LABEL Power off
 + COM32 poweroff.c32
 +
 +LABEL rosh
 + MENU LABEL Read-only shell
 + COM32 rosh.c32
 </​code>​ </​code>​