From a57e9e0ccbf9441ed74e81836cdbbe6d0deb522c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Tue, 17 Dec 2019 16:53:15 +0100 Subject: [PATCH] Build a "cdrom" installer and not a "netboot" one In the live-build code, netinst and netboot have the same meaning, and it means netboot, an installer that fetches the d-i udebs over the network. But we don't want that, we want the udeb to be available in the ISO so that it keeps working even after a kernel update in kali-rolling. --- auto/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto/config b/auto/config index 0cacab5..6a5d965 100755 --- a/auto/config +++ b/auto/config @@ -72,10 +72,10 @@ fi # Define options that vary across architectures case "$arch" in amd64) - lb_opts="$lb_opts --debian-installer netinst" + lb_opts="$lb_opts --debian-installer cdrom" ;; i386) - lb_opts="$lb_opts --debian-installer netinst --linux-flavours 686-pae" + lb_opts="$lb_opts --debian-installer cdrom --linux-flavours 686-pae" ;; armel|armhf) lb_opts="$lb_opts --binary-images hdd --binary-filesystem ext4 --chroot-filesystem none"