You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Michael Aldridge 0c4a3222ce
packer: Ensure cloud images generate new keys
1 week ago
data data, mklive.sh.in: remove void-vpkgs.conf 2 years ago
dracut autoinstaller: make wheel permission come first, fix permissions 6 months ago
grub mklive: add a new entry to load image into RAM (grub, syslinux). 8 years ago
hooks add hooks for dockerhub 4 years ago
isolinux mklive: add a new entry to load image into RAM (grub, syslinux). 8 years ago
keys Added musl.voidlinux.net RSA pubkey. 8 years ago
packer packer: Ensure cloud images generate new keys 1 week ago
pxelinux.cfg Add netboot generator script 6 years ago
.dockerignore add dockerignore 3 years ago
.gitignore packer: Initial packer config 4 years ago
COPYING COPYING: it's 2015. 8 years ago
Dockerfile replace default repository URL 9 months ago
Makefile Makefile: Bump Version 6 months ago
README.md README.md: remove (presumably dated) reference to runit 3 years ago
build-x86-images.sh.in build-x86-images: Fix passing of additional arguments to mklive 1 month ago
installer.sh.in installer: don't show groups from pkgs/live iso, default locale to C.UTF-8 1 month ago
lib.sh.in Use --make-rslave to avoid stuck mounts 6 months ago
mkimage.sh.in various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 6 months ago
mklive.sh.in mklive.sh: fail on unsupported archs 1 month ago
mknet.sh.in mknet: take syslinux files from /usr/lib 4 years ago
mkplatformfs.sh.in various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 6 months ago
mkrootfs.sh.in lib.sh.in/mkrootfs.sh.in: proper native platform detection 2 years ago
release.sh.in various: switch from rpi{,2,3,4} to rpi-$ARCH for rpi images 6 months ago

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