mksyslinux.conf 936 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Created by Tobias Powalowski <tpowa@archlinux.org>
  2. # Rebranded for Parabola by André Silva <emulatorman@parabola.nu>
  3. # config file of mksyslinux
  4. # DEFAULT kernel boot options like root=/dev/sda3 etc.
  5. # add your root= option, if you boot from a disk device
  6. # and don't want to add it by hand on each boot
  7. KERNEL_BOOT_OPTIONS=""
  8. # mkinitcpio config file, defaulted to stock config file
  9. MKINITCPIO_CONFIG="/etc/mkinitcpio.conf"
  10. # kernel version, defaulted to build for runtime kernel
  11. VERSION="$(uname -r)"
  12. # kernel image, defaulted to stock libre kernel
  13. KERNEL="/boot/vmlinuz-linux-libre"
  14. # boot message files
  15. BOOTMESSAGE="/usr/share/mksyslinux/boot.msg"
  16. OPTIONSBOOTMESSAGE="/usr/share/mksyslinux/options.msg"
  17. # syslinux.cfg file to use
  18. SYSLINUXCFG=""
  19. # Prompt on boot, 1=yes 0=no
  20. PROMPT="1"
  21. # Timeout, 30 seconds to fix usb keyboard issues
  22. # 0 means wait for prompt
  23. TIMEOUT="300"
  24. # default MBR
  25. MBR="/usr/lib/syslinux/mbr.bin"