mklive: always use base-system and dialog pkgs to generate the live image.

This commit is contained in:
Juan RP 2013-11-14 11:52:30 +01:00
parent c80eee86f9
commit e12311d655
1 changed files with 4 additions and 9 deletions

View File

@ -71,14 +71,9 @@ write_conf_file() {
# Default configuration file for vmklive-@VERSION@. # Default configuration file for vmklive-@VERSION@.
# #
# List of packages to be installed into the live image. # 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. #PACKAGE_LIST=""
#
# 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"
# Default Void Linux splash image for grub/syslinux. # Default Void Linux splash image for grub/syslinux.
SPLASH_IMAGE=/usr/share/void-artwork/splash.png SPLASH_IMAGE=/usr/share/void-artwork/splash.png
@ -314,9 +309,9 @@ fi
. $CONFIG_FILE . $CONFIG_FILE
if [ -z "$PACKAGE_LIST" ]; then if [ -z "$PACKAGE_LIST" ]; then
PACKAGE_LIST="base-system" PACKAGE_LIST="base-system dialog"
else else
PACKAGE_LIST="base-system $PACKAGE_LIST" PACKAGE_LIST="base-system dialog $PACKAGE_LIST"
fi fi
if [ ! -f $SYSLINUX_DATADIR/isolinux.bin ]; then if [ ! -f $SYSLINUX_DATADIR/isolinux.bin ]; then
echo "Missing required isolinux files in $SYSLINUX_DATADIR, exiting..." echo "Missing required isolinux files in $SYSLINUX_DATADIR, exiting..."