The Void Linux live image maker
Go to file
Christian Neukirchen 929175a025 Support for MEMDISK
The .iso can now be booted using Grub (memdisk from Syslinux package):

	linux16 /memdisk
	initrd16 /path/to/iso

As well as from Syslinux:

	LINUX memdisk
	INITRD path/to/iso
2015-05-02 12:16:21 +02:00
data data/void-vpkgs.conf: add some more default pkgs. 2015-01-10 06:42:19 +01:00
dracut Support for MEMDISK 2015-05-02 12:16:21 +02:00
grub mklive: add a new entry to load image into RAM (grub, syslinux). 2015-04-29 16:50:18 +02:00
isolinux mklive: add a new entry to load image into RAM (grub, syslinux). 2015-04-29 16:50:18 +02:00
keys mklive: two fixes to generate images on any linux distro. 2014-06-25 06:53:30 +02:00
.gitignore .gitignore: ignore .sh files in topdir. 2014-12-05 06:09:16 +01:00
COPYING COPYING: it's 2015. 2015-04-15 07:33:47 +02:00
Makefile Makefile: generate executable scripts. 2014-01-11 18:51:47 +01:00
README.md README: update mklive examples. 2015-04-15 07:33:04 +02:00
build-arm-images.sh.in build-{arm-images,rootfs}: added support to build just one platform. 2015-04-30 15:17:33 +02:00
build-rootfs.sh.in build-{arm-images,rootfs}: added support to build just one platform. 2015-04-30 15:17:33 +02:00
build-x86-images.sh.in build-x86-images: add firefox/pa to all DE flavours; add support to build X img. 2015-04-30 10:44:33 +02:00
installer.sh.in installer: accept WPA passphrases up to 50 chars. 2015-05-01 10:10:03 +02:00
mkimage.sh.in add platform support for USB armory 2015-04-28 17:30:16 +02:00
mklive.sh.in Support for MEMDISK 2015-05-02 12:16:21 +02:00
mkrootfs.sh.in add platform support for USB armory 2015-04-28 17:30:16 +02:00

README.md

The Void Linux image/live/rootfs maker and installer

This repository contains utilities for Void Linux:

  • installer (The Void Linux el-cheapo installer for x86)

  • mklive (The Void Linux live image maker for x86)

  • mkimage (The Void Linux image maker for ARM platforms)

  • mkrootfs (The Void Linux rootfs maker for ARM platforms)

Dependencies

  • xbps>=0.35
  • parted (for mkimage)
  • qemu-user-static binaries (for mkrootfs)

Usage

Type

$ make

and then see the usage output:

$ ./mklive.sh -h
$ ./mkrootfs.sh -h
$ ./mkimage.sh -h

Examples

Build a native live image with runit and keyboard set to 'fr':

# ./mklive.sh -k fr

Build an i686 (on x86_64) live image with some additional packages:

# ./mklive.sh -a i686 -p 'vim rtorrent'

Build an x86_64 musl live image with packages stored in a local repository:

# ./mklive.sh -a x86_64-musl -r /path/to/host/binpkgs

See the usage output for more information :-)