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.
merge-requests/16/head
Raphaël Hertzog 4 years ago committed by Raphaël Hertzog
parent 7ffbec1d9c
commit dbbf0c2b9e
No known key found for this signature in database
GPG Key ID: 03881DABEBC29AB9

@ -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"

Loading…
Cancel
Save