The Void Linux live image maker
Go to file
Enno Boland 6557b08b4c Merge pull request #23 from Gottox/usbamory
add platform support for USB armory
2015-04-29 16:39:19 +02:00
data data/void-vpkgs.conf: add some more default pkgs. 2015-01-10 06:42:19 +01:00
dracut dracut/services: do not enable wpa_supplicant. 2015-04-07 10:23:33 +02:00
grub mklive: force-add init=/sbin/init to the kernel cmdline for now. 2014-09-20 11:42:37 +02:00
isolinux mklive: force-add init=/sbin/init to the kernel cmdline for now. 2014-09-20 11:42:37 +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 add platform support for USB armory 2015-04-28 17:30:16 +02:00
build-rootfs.sh.in add platform support for USB armory 2015-04-28 17:30:16 +02:00
build-x86-images.sh.in build-x86-images.sh.in: improve the monospace fonts issue. 2015-04-08 10:02:15 +02:00
installer.sh.in Option not to install a bootloader 2015-02-20 22:12:18 +01:00
mkimage.sh.in add platform support for USB armory 2015-04-28 17:30:16 +02:00
mklive.sh.in mklive: use $BASE_ARCH if set for the image filename. 2015-04-15 07:30:18 +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 :-)