From e12311d65515477d03d0372644082d7d8f08efb9 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 14 Nov 2013 11:52:30 +0100 Subject: mklive: always use base-system and dialog pkgs to generate the live image. --- mklive.sh.in | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/mklive.sh.in b/mklive.sh.in index 07a3a89..a1740fb 100644 --- a/mklive.sh.in +++ b/mklive.sh.in @@ -71,14 +71,9 @@ write_conf_file() { # Default configuration file for vmklive-@VERSION@. # # List of packages to be installed into the live image. +# NOTE: base-system and dialog packages are always added by default. # -# The 'base-system' package is always added to the generated image. -# -# To build an official live image add the following packages: -# - dialog -# - f2fs-tools -# - grub-x86_64-efi -PACKAGE_LIST="dialog f2fs-tools grub-x86_64-efi" +#PACKAGE_LIST="" # Default Void Linux splash image for grub/syslinux. SPLASH_IMAGE=/usr/share/void-artwork/splash.png @@ -314,9 +309,9 @@ fi . $CONFIG_FILE if [ -z "$PACKAGE_LIST" ]; then - PACKAGE_LIST="base-system" + PACKAGE_LIST="base-system dialog" else - PACKAGE_LIST="base-system $PACKAGE_LIST" + PACKAGE_LIST="base-system dialog $PACKAGE_LIST" fi if [ ! -f $SYSLINUX_DATADIR/isolinux.bin ]; then echo "Missing required isolinux files in $SYSLINUX_DATADIR, exiting..." -- cgit 1.4.1