From 3df8dd683731a9a377c3e9a5362e63b5107d1827 2018-10-25 18:29:27 From: Unknown Date: 2018-10-25 18:29:27 Subject: [PATCH] remove DISABLE_FBI --- diff --git a/rpi23-gen-image.sh b/rpi23-gen-image.sh index d5606c0..db6d140 100755 --- a/rpi23-gen-image.sh +++ b/rpi23-gen-image.sh @@ -209,9 +209,6 @@ CRYPTFS_MAPPING=${CRYPTFS_MAPPING:="secure"} CRYPTFS_CIPHER=${CRYPTFS_CIPHER:="aes-xts-plain64:sha512"} CRYPTFS_XTSKEYSIZE=${CRYPTFS_XTSKEYSIZE:=512} -# Stop the Crypto Wars -DISABLE_FBI=${DISABLE_FBI:=false} - # Chroot scripts directory CHROOT_SCRIPTS=${CHROOT_SCRIPTS:=""} @@ -283,11 +280,6 @@ if [ "$KERNEL_CCACHE" = true ] ; then REQUIRED_PACKAGES="${REQUIRED_PACKAGES} ccache" fi -# Stop the Crypto Wars -if [ "$DISABLE_FBI" = true ] ; then - ENABLE_CRYPTFS=true -fi - # Add cryptsetup package to enable filesystem encryption if [ "$ENABLE_CRYPTFS" = true ] && [ "$BUILD_KERNEL" = true ] ; then REQUIRED_PACKAGES="${REQUIRED_PACKAGES} cryptsetup"