mkisolinux.conf 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Created by Tobias Powalowski <tpowa@archlinux.org>
  2. # Rebranded for Parabola by André Silva <emulatorman@parabola.nu>
  3. # config file of mkisolinux
  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/mkisolinux/boot.msg"
  16. OPTIONSBOOTMESSAGE="/usr/share/mkisolinux/options.msg"
  17. # syslinux.cfg file to use
  18. SYSLINUXCFG=""
  19. # Prompt on boot, 1=yes 0=no
  20. PROMPT="1"
  21. # Name of the ISO, if empty Parabola GNU/Linux-libre is used if not set by a HOOK later
  22. ISONAME=""
  23. # Timeout, 30 seconds to fix usb keyboard issues
  24. # 0 means wait for prompt
  25. TIMEOUT="300"
  26. # Setting cdrecord options
  27. DEVICE=""
  28. SPEED=""
  29. BLANKMODE=""