The Void Linux live image maker
Go to file
Juan RP 9f542b769d Set locale.LANG in grub/syslinux config. 2013-05-21 21:46:48 +02:00
dracut dracut: new locale.sh script to rebuild the target locale. 2013-05-21 21:44:45 +02:00
grub Set locale.LANG in grub/syslinux config. 2013-05-21 21:46:48 +02:00
isolinux Set locale.LANG in grub/syslinux config. 2013-05-21 21:46:48 +02:00
.gitignore Start integration of void-installer and start conversion to non-busybox utils. 2013-05-19 09:39:56 +02:00
COPYING Start integration of void-installer and start conversion to non-busybox utils. 2013-05-19 09:39:56 +02:00
Makefile Makefile: bump to 0.14. 2013-05-20 16:32:19 +02:00
README Start integration of void-installer and start conversion to non-busybox utils. 2013-05-19 09:39:56 +02:00
installer.sh.in Make sure all filesystems in targetdir are unmounted. 2013-05-20 16:00:34 +02:00
mklive.sh.in mklive: disable drm dracut module in the initramfs. 2013-05-21 18:15:56 +02:00
mkrootfs.sh.in Start integration of void-installer and start conversion to non-busybox utils. 2013-05-19 09:39:56 +02: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 a simple dialog-based installer
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.21
 - GNU bash
 - 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)

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.

Additionally void-mkrootfs generates a rootfs tarball suitable for unpacking
on a directory ready to 'chroot'.

	-- Juan RP <xtraeme@gmail.com>