Advertisement
Guest User

syslinux.cfg

a guest
Mar 24th, 2013
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 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. PROMPT 0
  22. NOESCAPE 1
  23. # Set to 1 if you always want to display the boot: prompt
  24. TOTALTIMEOUT 0
  25. TIMEOUT 0
  26. DEFAULT arch
  27.  
  28. # You can create syslinux keymaps with the keytab-lilo tool
  29. #KBDMAP de.ktl
  30.  
  31. # Menu Configuration
  32. # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
  33. #UI menu.c32
  34. UI vesamenu.c32
  35.  
  36. # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
  37. MENU TITLE Arch Linux
  38. #MENU BACKGROUND splash.png
  39. MENU COLOR border 30;44 #40ffffff #a0000000 std
  40. MENU COLOR title 1;36;44 #9033ccff #a0000000 std
  41. MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
  42. MENU COLOR unsel 37;44 #50ffffff #a0000000 std
  43. MENU COLOR help 37;40 #c0ffffff #a0000000 std
  44. MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
  45. MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
  46. MENU COLOR msg07 37;40 #90ffffff #a0000000 std
  47. MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
  48.  
  49. # boot sections follow
  50. #
  51. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  52. #
  53. #-*
  54.  
  55. LABEL arch
  56. MENU LABEL Arch Linux
  57. LINUX ../vmlinuz-linux
  58. APPEND root=/dev/sda1 ro i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 i915.semaphores=1 pcie_aspm=force elevator=noop acpi_backlight=vendor acpi_osi=Linux
  59. INITRD ../initramfs-linux.img
  60.  
  61. LABEL archfallback
  62. MENU LABEL Arch Linux Fallback
  63. LINUX ../vmlinuz-linux
  64. APPEND root=/dev/sda1 ro
  65. INITRD ../initramfs-linux-fallback.img
  66.  
  67. #LABEL windows
  68. # MENU LABEL Windows
  69. # COM32 chain.c32
  70. # APPEND hd0 1
  71.  
  72. LABEL hdt
  73. MENU LABEL HDT (Hardware Detection Tool)
  74. COM32 hdt.c32
  75.  
  76. LABEL reboot
  77. MENU LABEL Reboot
  78. COM32 reboot.c32
  79.  
  80. LABEL off
  81. MENU LABEL Power Off
  82. COMBOOT poweroff.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement