From dbbf0c2b9ef7d651058d45f0fc50b7a494f3cf52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Wed, 7 Jul 2021 15:12:14 +0200 Subject: [PATCH] Switch DISKTYPE to BD for Bluray Disk The DVD size limit has been reached and the build currently fails due to this. We don't really want to burn DVD as ISO images are written on USB keys and the exact size doesn't really matter for use in virtual machines. So let's instruct debian-cd to build a bluray image so that we no longer are annoyed with the size limit. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 5a804dc..2e52118 100755 --- a/build.sh +++ b/build.sh @@ -43,7 +43,7 @@ installer_image_name() { if [ "$KALI_VARIANT" = "netinst" ]; then echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-NETINST-1.iso" else - echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-DVD-1.iso" + echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-BD-1.iso" fi } @@ -309,7 +309,7 @@ case "$IMAGE_TYPE" in if [ "$KALI_VARIANT" = "netinst" ]; then export DISKTYPE="NETINST" else - export DISKTYPE="DVD" + export DISKTYPE="BD" fi debug "DISKTYPE: $DISKTYPE"