Advertisement
Guest User

Untitled

a guest
Jul 11th, 2012
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. # Config file for Syslinux -
  2. # /boot/syslinux/syslinux.cfg
  3. #OEE#
  4. #
  5. # Comboot modules:
  6. # * menu.c32 - provides a text menu
  7. # * vesamenu.c32 - provides a graphical menu
  8. # * chain.c32 - chainload MBRs, partition boot sectors, Windows bootloaders
  9. # * hdt.c32 - hardware detection tool
  10. # * reboot.c32 - reboots the system
  11. # * poweroff.com - shutdown the system
  12. #
  13. # To Use: Copy the respective files from /usr/lib/syslinux to /boot/syslinux.
  14. # If /usr and /boot are on the same file system, symlink the files instead
  15. # of copying them.
  16. #
  17. # If you do not use a menu, a 'boot:' prompt will be shown and the system
  18. # will boot automatically after 5 seconds.
  19. #
  20. # Please review the wiki: https://wiki.archlinux.org/index.php/Syslinux
  21. # The wiki provides further configuration examples
  22.  
  23. # DEFAULT arch
  24. PROMPT 0 # Set to 1 if you always want to display the boot: prompt
  25. TIMEOUT 30
  26. # You can create syslinux keymaps with the keytab-lilo tool
  27. KBDMAP fr.ktl
  28.  
  29. # Menu Configuration
  30. # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
  31. UI menu.c32
  32. # UI vesamenu.c32
  33.  
  34. # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
  35. MENU TITLE Olivier Esser
  36. MENU CLEAR
  37. #MENU BACKGROUND splash.png
  38. # MENU COLOR border 30;44 #40ffffff #a0000000 std
  39. # MENU COLOR title 1;36;44 #9033ccff #a0000000 std
  40. # MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
  41. # MENU COLOR unsel 37;44 #50ffffff #a0000000 std
  42. # MENU COLOR help 37;40 #c0ffffff #a0000000 std
  43. # MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
  44. # MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
  45. # MENU COLOR msg07 37;40 #90ffffff #a0000000 std
  46. # MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
  47.  
  48. # boot sections follow
  49. #
  50. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  51. #
  52. #-*
  53.  
  54. LABEL arch
  55. MENU LABEL Arch Linux
  56. LINUX /boot/vmlinuz-linux
  57. APPEND root=UUID=1c993bad-85b5-4edc-a57a-280a801b327b ro noautogroup ipv6.disable=1
  58. INITRD /boot/initramfs-linux.img
  59.  
  60. LABEL archlts
  61. MENU LABEL Arch Linux -- kernel lts
  62. LINUX /boot/vmlinuz-linux-lts
  63. APPEND root=UUID=1c993bad-85b5-4edc-a57a-280a801b327b ro noautogroup ipv6.disable=1
  64. INITRD /boot/initramfs-linux-lts.img
  65.  
  66. LABEL windows
  67. MENU LABEL Windows XP
  68. COM32 chain.c32
  69. APPEND hd0 1
  70.  
  71. LABEL memtest
  72. MENU LABEL Memtest86+
  73. LINUX /boot//memtest86+/memtest.bin
  74.  
  75. MENU SEPARATOR
  76.  
  77. LABEL usb
  78. MENU LABEL Boot from USB disk (plpbt)
  79. LINUX plpbt_usbboot
  80.  
  81. # LABEL hdt
  82. # MENU LABEL HDT (Hardware Detection Tool)
  83. # COM32 hdt.c32
  84.  
  85. # LABEL reboot
  86. # MENU LABEL Reboot
  87. # COM32 reboot.c32
  88.  
  89. # LABEL off
  90. # MENU LABEL Power Off
  91. # COMBOOT poweroff.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement