The Noid Linux live image maker

Juan RP c193f1ce75 installer.sh: literally copy live rootfs to the targetdir and cleanup. 11 år sedan
dracut 783a25e632 Misc changes to reduce image size. 11 år sedan
grub 9f542b769d Set locale.LANG in grub/syslinux config. 12 år sedan
isolinux 9f542b769d Set locale.LANG in grub/syslinux config. 12 år sedan
.gitignore b877a74a49 .gitignore: ignore all .sh files. 11 år sedan
COPYING 44423c3700 Start integration of void-installer and start conversion to non-busybox utils. 12 år sedan
Makefile a75903c0b2 Makefile: install void-mkimage. 11 år sedan
README c15dd6d8d5 README: update. 11 år sedan
installer.sh.in c193f1ce75 installer.sh: literally copy live rootfs to the targetdir and cleanup. 11 år sedan
mkimage.sh.in 065b000f4f New void-mkimage script to generate working images with a provided rootfs tarball. 11 år sedan
mklive.sh.in 783a25e632 Misc changes to reduce image size. 11 år sedan
mkrootfs.sh.in 112a6a7775 Add -V option to show version to void-mk{live,rootfs} and installer in the title. 11 år sedan

README

void-mklive - The Void Linux live image maker

This is a simple shell script to build a live image for the Void
Linux distribution. The images contain a simple dialog-based installer
to be able to install Void linux to storage disks.

The generated image can be booted from BIOS and EFI systems (dual boot).
ISOLINUX is used to boot from PC-BIOS systems, while GRUB is used to
boot in EFI systems.

Dependencies:

- xbps>=0.21
- GNU bash
- syslinux (to generate the PC-BIOS bootloader)
- dosfstools (to generate the EFI bootloader)
- xorriso (to generate the ISO image)
- squashfs-tools (to generate the squashed rootfs)

Usage: void-mklive [options]

Options:
-C file Path to configuration file (defaults to ~/.mklive.conf)
-c (gzip|bzip2|xz) Compression type for the squashfs/initramfs image.
-l "pkgname ..." Generate a local repository in the image with these packages.
Packages must be delimited by blanks.
-r rootdir Use this directory to generate the image (if unset,
current working directory will be used).
-o outfile Output file name for the ISO image.
-s splash Splash image file for isolinux.

* The first time it is executed a config file will be created (~/mklive.conf).

Take a look at the configuration file (~/mklive.conf) to tweak some
default parameters in the generated image.

Additionally void-mkrootfs generates a rootfs tarball suitable for unpacking
on a directory ready to 'chroot'; and `void-mkimage` can generate a working disk
image with a specified rootfs tarball.

-- Juan RP