[SCM] live-boot branch, debian, updated. debian/2.0_a4-1-11-g4836a17

Daniel Baumann daniel at debian.org
Sat Jun 5 12:22:51 UTC 2010


The following commit has been merged in the debian branch:
commit 074f7c2e0d98093e60adbf30c994147c353cab7c
Author: Michal Suchanek <hramrach at centrum.cz>
Date:   Fri Jun 4 09:24:28 2010 +0200

    Adding DHCP debugging option.

diff --git a/scripts/live b/scripts/live
index 753fceb..5c6a82e 100755
--- a/scripts/live
+++ b/scripts/live
@@ -85,6 +85,17 @@ Arguments ()
 				set -x
 				;;
 
+			dhcp)
+				# Force dhcp even while netbooting
+				# Use for debugging in case somebody works on fixing dhclient
+				DHCP="Force";
+				export DHCP
+				;;
+
+			nodhcp)
+				unset DHCP
+				;;
+
 			ethdevice=*)
 				DEVICE="${ARGUMENT#ethdevice=}"
 				export DEVICE
diff --git a/scripts/live-bottom/23networking b/scripts/live-bottom/23networking
index d73f63b..871d8c0 100755
--- a/scripts/live-bottom/23networking
+++ b/scripts/live-bottom/23networking
@@ -71,7 +71,7 @@ EOF
 
 	done
 else
-	if [ -z "${NETBOOT}" ]
+	if [ -z "${NETBOOT}" ] || [ -n "${DHCP}" ]
 	then
 		# default, dhcp assigned
 		method="dhcp"

-- 
live-boot



More information about the debian-live-changes mailing list