about summary refs log tree commit diff
path: root/README
blob: 8cd7cccf3a9595392b3a6f5fa9ebfe58cc5ea29e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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).
For BIOS isolinux is used and for EFI we use grub2.

Dependencies:
 - xbps>=0.18.
 - systemd
 - util-linux agetty(8).
 - dracut
 - grub with support for PC-BIOS and x86_64 EFI
 - syslinux
 - dosfstools (for mkfs.vfat)
 - xorriso
 - squashfs-tools
 - void-installer

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.
 -k version		Kernel version to use.
 -o outfile		Output file name for the ISO image.
 -s splash		Splash image file for isolinux.

* If -k not specified it will use $(uname -r) by default.
* The first time it is executed a config file will be created (~/mklive.conf).
* It's assumed that void-mklive is executed in a Void Linux system.

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

	-- Juan RP <xtraeme@gmail.com>