[SCM] debian-live/live-helper branch, master, updated. 1.0_a40-1-13-g32f6dcd

Chris Lamb chris at chris-lamb.co.uk
Sat Mar 22 18:58:13 UTC 2008


The following commit has been merged in the master branch:
commit 3e5f888a1933bf9f867280dcc84be597287af195
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Sat Mar 22 18:09:46 2008 +0000

    lh_binary_debian-installer: Merge pool/netboot determining logic
    
    The code which determined whether to use the netboot d-i images was the
    inverse of the code which determined whether to create a local package
    pool: this patch merges the two.
    
    This patch additionally ensures that setting "businesscard" whilst building
    an ISO image will install the d-i netboot images; this was causing d-i
    failures when it couldn't find its (non-existent) package pool.
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>

diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer
index df16f98..d1913fa 100755
--- a/helpers/lh_binary_debian-installer
+++ b/helpers/lh_binary_debian-installer
@@ -91,11 +91,27 @@ esac
 # Setting remote d-i directories
 case "${LH_BINARY_IMAGES}" in
 	net)
+		USE_NETBOOT_DI="yes"
+		;;
+	*)
+		case "${LH_DEBIAN_INSTALLER}" in
+			businesscard|netboot)
+				USE_NETBOOT_DI="yes"
+				;;
+			*)
+				USE_NETBOOT_DI="no"
+				;;
+		esac
+		;;
+esac
+
+case "${USE_NETBOOT_DI}" in
+	yes)
 		DI_REMOTE_BASE="netboot/debian-installer/${LH_ARCHITECTURE}"
 		DI_REMOTE_BASE_GTK="netboot/gtk/debian-installer/${LH_ARCHITECTURE}"
 		DI_REMOTE_KERNEL="linux"
 		;;
-	*)
+	no)
 		DI_REMOTE_BASE="cdrom"
 		DI_REMOTE_BASE_GTK="cdrom/gtk"
 		DI_REMOTE_KERNEL="vmlinuz"
@@ -233,24 +249,7 @@ then
 fi
 
 # Only download additional packages if appropriate
-case "${LH_DEBIAN_INSTALLER}" in
-	enabled|cdrom|netinst)
-		case "${LH_BINARY_IMAGES}" in
-			net)
-				DI_PACKAGE_POOL="no"
-				;;
-			*)
-				DI_PACKAGE_POOL="yes"
-				;;
-		esac
-		;;
-
-	*)
-		DI_PACKAGE_POOL="no"
-		;;
-esac
-
-if [ "${DI_PACKAGE_POOL}" = "yes" ]
+if [ "${USE_NETBOOT_DI}" = "no" ]
 then
 	# Downloading additional packages
 	mkdir -p chroot/binary.deb/archives/partial

-- 
debian-live/live-helper



More information about the debian-live-changes mailing list