The Void Linux live image maker
Go to file
classabbyamp b5e8502717
dracut/autoinstaller: fix kcl parsing
regression caused by fce4ed6420
2023-05-20 15:55:51 -04:00
data data, mklive.sh.in: remove void-vpkgs.conf 2021-03-15 22:17:38 -07:00
dracut dracut/autoinstaller: fix kcl parsing 2023-05-20 15:55:51 -04: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 Added musl.voidlinux.net RSA pubkey. 2015-05-08 17:25:42 +02:00
packer packer: Ensure cloud images generate new keys 2023-03-20 22:42:36 -05:00
pxelinux.cfg Add netboot generator script 2017-08-06 21:03:55 -07:00
.gitignore packer: Initial packer config 2019-03-30 23:10:12 -07:00
build-x86-images.sh.in build-x86-images.sh: use lightdm instead of lxdm 2023-04-15 04:26:58 -04:00
COPYING COPYING: it's 2015. 2015-04-15 07:33:47 +02:00
installer.sh.in installer: properly unmount the whole /mnt/target 2023-05-13 20:08:57 -05:00
lib.sh.in Use --make-rslave to avoid stuck mounts 2022-10-01 03:25:04 -05:00
Makefile Makefile: remove masterdir docker infrastructure 2023-04-08 02:45:00 -05:00
mkimage.sh.in mk*.sh: use UTC date 2023-04-30 15:24:39 -04:00
mklive.sh.in mk*.sh: use UTC date 2023-04-30 15:24:39 -04:00
mknet.sh.in mk*.sh: use UTC date 2023-04-30 15:24:39 -04:00
mkplatformfs.sh.in mk*.sh: use UTC date 2023-04-30 15:24:39 -04:00
mkrootfs.sh.in mk*.sh: use UTC date 2023-04-30 15:24:39 -04:00
README.md README.md: remove (presumably dated) reference to runit 2020-07-25 12:43:48 -07:00
release.sh.in various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 2022-10-01 02:17:55 -05:00

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)

  • mkplatformfs (The Void Linux filesystem tool to produce a rootfs for a particular platform)

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

  • mknet (Script to generate netboot tarballs for Void)

Build Dependencies

  • make

Dependencies

  • Compression type for the initramfs image
    • liblz4 (for lz4, xz) (default)
  • xbps>=0.45
  • 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 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 :-)