about summary refs log tree commit diff
path: root/mklive.sh.in
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2013-11-14 11:52:30 +0100
committerJuan RP <xtraeme@gmail.com>2013-11-14 11:52:30 +0100
commite12311d65515477d03d0372644082d7d8f08efb9 (patch)
tree62ed7c23e14dc5c1f8e61ea9be0b0e801d5d5492 /mklive.sh.in
parentc80eee86f9eefbb97afdf54ae2dc6203879a7e42 (diff)
downloadhrmpf-e12311d65515477d03d0372644082d7d8f08efb9.tar.gz
hrmpf-e12311d65515477d03d0372644082d7d8f08efb9.tar.xz
hrmpf-e12311d65515477d03d0372644082d7d8f08efb9.zip
mklive: always use base-system and dialog pkgs to generate the live image.
Diffstat (limited to 'mklive.sh.in')
-rw-r--r--mklive.sh.in13
1 files 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..."