The Noid Linux live image maker

Juan RP e05ce506e8 copy-kmods.sh -> copy-initramfs.sh; do not copy kmods, just the initramfs for shutdown. 12 jaren geleden
dracut e05ce506e8 copy-kmods.sh -> copy-initramfs.sh; do not copy kmods, just the initramfs for shutdown. 12 jaren geleden
grub b557955207 Update grub/isolinux kernel cmdline: remove useless args. 12 jaren geleden
isolinux b557955207 Update grub/isolinux kernel cmdline: remove useless args. 12 jaren geleden
.gitignore 44423c3700 Start integration of void-installer and start conversion to non-busybox utils. 12 jaren geleden
COPYING 44423c3700 Start integration of void-installer and start conversion to non-busybox utils. 12 jaren geleden
Makefile 38caeeab06 Makefile: bump to 0.14. 12 jaren geleden
README 44423c3700 Start integration of void-installer and start conversion to non-busybox utils. 12 jaren geleden
installer.sh.in dfb3ade8c5 Make sure all filesystems in targetdir are unmounted. 12 jaren geleden
mklive.sh.in 46f0398357 mklive: disable drm dracut module in the initramfs. 12 jaren geleden
mkrootfs.sh.in 44423c3700 Start integration of void-installer and start conversion to non-busybox utils. 12 jaren geleden

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'.

-- Juan RP