Advertisement
Algabe

syslinux.cfg

Sep 3rd, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 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 50
  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 WIDTH 78
  37. MENU MARGIN 4
  38. MENU ROWS 5
  39. MENU VSHIFT 10
  40. MENU TIMEOUTROW 13
  41. MENU TABMSGROW 11
  42. MENU CMDLINEROW 11
  43. MENU HELPMSGROW 16
  44. MENU HELPMSGENDROW 29
  45. MENU COLOR border 30;44 #40ffffff #a0000000 std
  46. MENU COLOR title 1;36;44 #9033ccff #a0000000 std
  47. MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
  48. MENU COLOR unsel 37;44 #50ffffff #a0000000 std
  49. MENU COLOR help 37;40 #c0ffffff #a0000000 std
  50. MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
  51. MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
  52. MENU COLOR msg07 37;40 #90ffffff #a0000000 std
  53. MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
  54.  
  55. # boot sections follow
  56. #
  57. # TIP: If you want a 1024x768 framebuffer, add "vga=792" to your kernel line.
  58. #
  59. #-*
  60.  
  61. LABEL arch
  62. MENU LABEL Arch Linux
  63. LINUX ../vmlinuz-linux vga=773
  64. APPEND root=/dev/sda2 ro
  65. INITRD ../initramfs-linux.img
  66.  
  67. LABEL archfallback
  68. MENU LABEL Arch Linux Fallback
  69. LINUX ../vmlinuz-linux
  70. APPEND root=/dev/sda2 ro
  71. INITRD ../initramfs-linux-fallback.img
  72.  
  73. #LABEL windows
  74. # MENU LABEL Windows
  75. # COM32 chain.c32
  76. # APPEND hd0 1
  77.  
  78. LABEL hdt
  79. MENU LABEL HDT (Hardware Detection Tool)
  80. COM32 hdt.c32
  81.  
  82. LABEL reboot
  83. MENU LABEL Reboot
  84. COM32 reboot.c32
  85.  
  86. LABEL off
  87. MENU LABEL Power Off
  88. COMBOOT poweroff.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement