README 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. void-mklive - The Void Linux live image maker
  2. This is a simple shell script to build a live image for the
  3. Void linux distribution. The images contain the void-installer package
  4. to be able to install Void linux to storage disks.
  5. The generated image can be booted from BIOS and EFI systems (dual boot).
  6. For BIOS isolinux is used and for EFI we use grub2.
  7. Dependencies:
  8. - xbps>=0.18.
  9. - systemd
  10. - util-linux agetty(8).
  11. - dracut
  12. - grub with support for PC-BIOS and x86_64 EFI
  13. - syslinux
  14. - dosfstools (for mkfs.vfat)
  15. - xorriso
  16. - squashfs-tools
  17. - void-installer
  18. Usage: void-mklive [options]
  19. Options:
  20. -C file Path to configuration file (defaults to ~/.mklive.conf)
  21. -c (gzip|bzip2|xz) Compression type for the squashfs/initramfs image.
  22. -k version Kernel version to use.
  23. -o outfile Output file name for the ISO image.
  24. -s splash Splash image file for isolinux.
  25. * If -k not specified it will use $(uname -r) by default.
  26. * The first time it is executed a config file will be created (~/mklive.conf).
  27. * It's assumed that void-mklive is executed in a Void Linux system.
  28. Take a look at the configuration file (~/mklive.conf) to tweak some
  29. default parameters in the generated image.
  30. -- Juan RP <[email protected]>