syslinux.cfg 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. #
  11. # To Use: Copy the respective files from /usr/lib/syslinux to /boot/syslinux.
  12. # If /usr and /boot are on the same file system, symlink the files instead
  13. # of copying them.
  14. #
  15. # If you do not use a menu, a 'boot:' prompt will be shown and the system
  16. # will boot automatically after 5 seconds.
  17. #
  18. # Please review the wiki: https://wiki.parabola.nu/index.php/Syslinux
  19. # The wiki provides further configuration examples
  20. DEFAULT parabola
  21. PROMPT 0 # Set to 1 if you always want to display the boot: prompt
  22. TIMEOUT 50
  23. # You can create syslinux keymaps with the keytab-lilo tool
  24. #KBDMAP de.ktl
  25. # Menu Configuration
  26. # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
  27. #UI menu.c32
  28. UI vesamenu.c32
  29. # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
  30. MENU TITLE Parabola GNU/Linux-libre
  31. MENU BACKGROUND splash.png
  32. MENU COLOR border 35;40 #ff777caa #a0000000 std
  33. MENU COLOR title 1;35;40 #ff777caa #a0000000 std
  34. MENU COLOR sel 7;35;47 #e0ffffff #20777caa all
  35. MENU COLOR unsel 35;40 #ff777caa #a0000000 std
  36. MENU COLOR help 35;40 #c0b2b2b2 #a0000000 std
  37. MENU COLOR timeout_msg 35;40 #ff777caa #00000000 std
  38. MENU COLOR timeout 1;35;40 #ff777caa #00000000 std
  39. MENU COLOR msg07 35;40 #ff777caa #a0000000 std
  40. MENU COLOR tabmsg 35;40 #ff777caa #00000000 std
  41. MENU WIDTH 78
  42. MENU MARGIN 4
  43. MENU ROWS 7
  44. MENU VSHIFT 10
  45. MENU TABMSGROW 14
  46. MENU CMDLINEROW 14
  47. MENU HELPMSGROW 16
  48. MENU HELPMSGENDROW 29
  49. # boot sections follow
  50. #
  51. # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
  52. #
  53. #-*
  54. LABEL parabola
  55. MENU LABEL Parabola GNU/Linux-libre
  56. LINUX ../vmlinuz-linux-libre
  57. APPEND root=/dev/sda3 rw
  58. INITRD ../initramfs-linux-libre.img
  59. LABEL parabolafallback
  60. MENU LABEL Parabola GNU/Linux-libre Fallback
  61. LINUX ../vmlinuz-linux-libre
  62. APPEND root=/dev/sda3 rw
  63. INITRD ../initramfs-linux-libre-fallback.img
  64. # If you want Memtest on syslinux, use this LABEL section to launch it (install the memtest86+ package)
  65. # LABEL memtest
  66. # MENU LABEL Memtest86+
  67. # LINUX ../memtest86+/memtest.bin
  68. LABEL hdt
  69. MENU LABEL HDT (Hardware Detection Tool)
  70. COM32 hdt.c32
  71. LABEL reboot
  72. MENU LABEL Reboot
  73. COM32 reboot.c32
  74. LABEL poweroff
  75. MENU LABEL Poweroff
  76. COM32 poweroff.c32