The Void Linux live image maker
Go to file
Juan RP b1655acba5 mklive.sh.in: detect xbps>=0.20 correctly. 2013-01-16 20:53:32 +01:00
dracut dracut: remove conf script; we can override settings via kernel cmdline. 2012-11-22 18:27:57 +01:00
grub Revamped to support EFI booting via grub2. 2012-07-06 15:29:12 +02:00
isolinux Update for new dracut (rd.liveimg) and /usr switch. 2012-08-29 16:55:00 +02:00
.gitignore gitignore: only ignore generated mklive.sh. 2012-06-14 11:21:39 +02:00
COPYING Added a COPYING file. 2012-07-06 17:39:28 +02:00
Makefile Update for 0.18; new options -l (generates a local repo) and -r to set rootdir. 2012-11-22 14:35:37 +01:00
README Update for 0.18; new options -l (generates a local repo) and -r to set rootdir. 2012-11-22 14:35:37 +01:00
mklive.sh.in mklive.sh.in: detect xbps>=0.20 correctly. 2013-01-16 20:53:32 +01:00

README

void-mklive - The Void Linux live image maker

This is a simple shell script to build a live image for the
Void linux distribution. The images contain the void-installer package
to be able to install Void linux to storage disks.

The generated image can be booted from BIOS and EFI systems (dual boot).
ISOLINUX is used to boot from PC-BIOS systems, while GRUB is used to
boot in EFI systems.

Dependencies:
 - xbps>=0.18
 - syslinux (to generate the PC-BIOS bootloader)
 - dosfstools (to generate the EFI bootloader)
 - xorriso (to generate the ISO image)
 - squashfs-tools (to generate the squashed rootfs)
 - linux-user-chroot (to chroot and bind mount pseudofs)

Usage: void-mklive [options]

Options:
 -C file		Path to configuration file (defaults to ~/.mklive.conf)
 -c (gzip|bzip2|xz) 	Compression type for the squashfs/initramfs image.
 -l "pkgname ..."	Generate a local repository in the image with these packages.
 			Packages must be delimited by blanks.
 -r rootdir		Use this directory to generate the image (if unset,
 			current working directory will be used).
 -o outfile		Output file name for the ISO image.
 -s splash		Splash image file for isolinux.

* The first time it is executed a config file will be created (~/mklive.conf).

Take a look at the configuration file (~/mklive.conf) to tweak some
default parameters in the generated image.

	-- Juan RP <xtraeme@gmail.com>