summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_syslinux
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-03-23 04:21:47 +0000
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:29 +0100
commit55472e65570b2ebd33a0bd9ca4aebfb0cad203e4 (patch)
treeea6372cd9bcf9b5597584772e9bc671968f67b6c /helpers/lh_binary_syslinux
parent13625df75ce06441df9c8e19d104c4fabf69bafe (diff)
downloadlive-build-55472e65570b2ebd33a0bd9ca4aebfb0cad203e4.zip
live-build-55472e65570b2ebd33a0bd9ca4aebfb0cad203e4.tar.gz
Allow LH_ENCRYPTION="disabled" to disable encryption
Diffstat (limited to 'helpers/lh_binary_syslinux')
-rwxr-xr-xhelpers/lh_binary_syslinux11
1 files changed, 7 insertions, 4 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux
index 535fb8f..98dabeb 100755
--- a/helpers/lh_binary_syslinux
+++ b/helpers/lh_binary_syslinux
@@ -388,10 +388,13 @@ mkdir -p "${SCREEN_PATH}"
mkdir -p "${DATA_PATH}"
# Setting boot parameters
-if [ -n "${LH_ENCRYPTION}" ]
-then
- LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} encryption=${LH_ENCRYPTION}"
-fi
+case "${LH_ENCRYPTION}" in
+ ""|disabled)
+ ;;
+ *)
+ LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} encryption=${LH_ENCRYPTION}"
+ ;;
+esac
if [ -n "${LH_USERNAME}" ]
then