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
syslinux [2015/06/01 17:33]
steve
syslinux [2016/01/06 13:46]
steve
Line 1: Line 1:
 ====== syslinux ====== ====== syslinux ======
 +
 +  * [[https://​wiki.archlinux.org/​index.php/​Syslinux|Arch Linux: Syslinux]]
  
 ==== EXTLINUX GPT Installation ==== ==== EXTLINUX GPT Installation ====
Line 19: Line 21:
 <​code>​ <​code>​
 cd /​usr/​share/​syslinux/​ cd /​usr/​share/​syslinux/​
-cp chain.c32 ldlinux.c32 libcom32.c32 libutil.c32 linux.c32 memdisk menu.c32 vesamenu.c32 /​boot/​extlinux/​+cp chain.c32 ldlinux.c32 libcom32.c32 libutil.c32 linux.c32 memdisk menu.c32 vesamenu.c32 reboot.c32 poweroff.c32 rosh.c32 /​boot/​extlinux/​
 </​code>​ </​code>​
  
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>​