Advertisement
Guest User

Untitled

a guest
Jan 30th, 2013
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. # Config file for Syslinux -
  2. # /boot/syslinux/syslinux.cfg
  3. #
  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
  11. #
  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.
  15. #
  16. # If you do not use a menu, a 'boot:' prompt will be shown and the system
  17. # will boot automatically after 5 seconds.
  18. #
  19. # Please review the wiki: https://wiki.archlinux.org/index.php/Syslinux
  20. # The wiki provides further configuration examples
  21.  
  22. DEFAULT arch
  23. PROMPT 0 # Set to 1 if you always want to display the boot: prompt
  24. TIMEOUT 500
  25. # You can create syslinux keymaps with the keytab-lilo tool
  26. #KBDMAP de.ktl
  27.  
  28. # Menu Configuration
  29. # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
  30. UI menu.c32
  31. #UI vesamenu.c32
  32.  
  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
  45.  
  46. # boot sections follow
  47. #
  48. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  49. #
  50. #-*
  51.  
  52. LABEL arch
  53. MENU LABEL Arch Linux
  54. LINUX ../vmlinuz-linux
  55. APPEND root=/dev/sda4 ro
  56. INITRD ../initramfs-linux.img
  57.  
  58. LABEL archfallback
  59. MENU LABEL Arch Linux Fallback
  60. LINUX ../vmlinuz-linux
  61. APPEND root=/dev/sda4 ro
  62. INITRD ../initramfs-linux-fallback.img
  63.  
  64. LABEL windows
  65. MENU LABEL Windows
  66. COM32 chain.c32
  67. APPEND hd0 1
  68.  
  69. LABEL hdt
  70. MENU LABEL HDT (Hardware Detection Tool)
  71. COM32 hdt.c32
  72.  
  73. LABEL reboot
  74. MENU LABEL Reboot
  75. COM32 reboot.c32
  76.  
  77. LABEL off
  78. MENU LABEL Power Off
  79. COMBOOT poweroff.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement