The Noid Linux live image maker

classabbyamp 083c271f56 packer/hcl2/source-*.pkr.hcl: update iso url and checksum 2 gadi atpakaļ
data e4cf0ea630 data, mklive.sh.in: remove void-vpkgs.conf 4 gadi atpakaļ
dracut c9dbeed8a4 autoinstaller: make wheel permission come first, fix permissions 2 gadi atpakaļ
grub 749ed6c3c4 mklive: add a new entry to load image into RAM (grub, syslinux). 10 gadi atpakaļ
hooks 92bb9df1d3 add hooks for dockerhub 6 gadi atpakaļ
isolinux 749ed6c3c4 mklive: add a new entry to load image into RAM (grub, syslinux). 10 gadi atpakaļ
keys 30d9ebece4 Added musl.voidlinux.net RSA pubkey. 10 gadi atpakaļ
packer 083c271f56 packer/hcl2/source-*.pkr.hcl: update iso url and checksum 2 gadi atpakaļ
pxelinux.cfg 414ebf318f Add netboot generator script 7 gadi atpakaļ
.dockerignore a1352601ca add dockerignore 5 gadi atpakaļ
.gitignore 5859e79c29 packer: Initial packer config 6 gadi atpakaļ
COPYING bc5f40d51f COPYING: it's 2015. 10 gadi atpakaļ
Dockerfile 5fabad111d replace default repository URL 2 gadi atpakaļ
Makefile 3ec7fa11e0 Makefile: Bump Version 2 gadi atpakaļ
README.md 92ac26babe README.md: remove (presumably dated) reference to runit 4 gadi atpakaļ
build-x86-images.sh.in c0d8ff0f4d build-x86-images: Fix passing of additional arguments to mklive 2 gadi atpakaļ
installer.sh.in b6edd4051b installer: don't show groups from pkgs/live iso, default locale to C.UTF-8 2 gadi atpakaļ
lib.sh.in eb8167df6c Use --make-rslave to avoid stuck mounts 2 gadi atpakaļ
mkimage.sh.in 4c66390467 various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 2 gadi atpakaļ
mklive.sh.in 581249eb2f mklive.sh: fail on unsupported archs 2 gadi atpakaļ
mknet.sh.in 7559500693 mknet: take syslinux files from /usr/lib 6 gadi atpakaļ
mkplatformfs.sh.in 4c66390467 various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 2 gadi atpakaļ
mkrootfs.sh.in 7d30d331eb lib.sh.in/mkrootfs.sh.in: proper native platform detection 4 gadi atpakaļ
release.sh.in 4c66390467 various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 2 gadi atpakaļ

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)

  • 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 :-)