[Debian-live-changes] r965 - in dists/trunk/live-helper: doc functions helpers

Daniel Baumann daniel at alioth.debian.org
Fri Apr 6 12:36:02 UTC 2007


Author: daniel
Date: 2007-04-06 12:36:01 +0000 (Fri, 06 Apr 2007)
New Revision: 965

Modified:
   dists/trunk/live-helper/doc/ChangeLog
   dists/trunk/live-helper/functions/breakpoints.sh
   dists/trunk/live-helper/helpers/lh_binary
   dists/trunk/live-helper/helpers/lh_binary_chroot
   dists/trunk/live-helper/helpers/lh_binary_encryption
   dists/trunk/live-helper/helpers/lh_binary_grub
   dists/trunk/live-helper/helpers/lh_binary_hdd
   dists/trunk/live-helper/helpers/lh_binary_includes
   dists/trunk/live-helper/helpers/lh_binary_iso
   dists/trunk/live-helper/helpers/lh_binary_linuximage
   dists/trunk/live-helper/helpers/lh_binary_localincludes
   dists/trunk/live-helper/helpers/lh_binary_manifest
   dists/trunk/live-helper/helpers/lh_binary_md5sum
   dists/trunk/live-helper/helpers/lh_binary_memtest86
   dists/trunk/live-helper/helpers/lh_binary_net
   dists/trunk/live-helper/helpers/lh_binary_rootfs
   dists/trunk/live-helper/helpers/lh_binary_syslinux
   dists/trunk/live-helper/helpers/lh_binary_usb
   dists/trunk/live-helper/helpers/lh_bootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
   dists/trunk/live-helper/helpers/lh_build
   dists/trunk/live-helper/helpers/lh_chroot
   dists/trunk/live-helper/helpers/lh_chroot_apt
   dists/trunk/live-helper/helpers/lh_chroot_debianchroot
   dists/trunk/live-helper/helpers/lh_chroot_hacks
   dists/trunk/live-helper/helpers/lh_chroot_hooks
   dists/trunk/live-helper/helpers/lh_chroot_hosts
   dists/trunk/live-helper/helpers/lh_chroot_interactive
   dists/trunk/live-helper/helpers/lh_chroot_linuximage
   dists/trunk/live-helper/helpers/lh_chroot_localhooks
   dists/trunk/live-helper/helpers/lh_chroot_localincludes
   dists/trunk/live-helper/helpers/lh_chroot_localization
   dists/trunk/live-helper/helpers/lh_chroot_localpackages
   dists/trunk/live-helper/helpers/lh_chroot_localpackageslists
   dists/trunk/live-helper/helpers/lh_chroot_packages
   dists/trunk/live-helper/helpers/lh_chroot_packageslists
   dists/trunk/live-helper/helpers/lh_chroot_proc
   dists/trunk/live-helper/helpers/lh_chroot_resolv
   dists/trunk/live-helper/helpers/lh_chroot_sources
   dists/trunk/live-helper/helpers/lh_chroot_symlinks
   dists/trunk/live-helper/helpers/lh_chroot_sysfs
   dists/trunk/live-helper/helpers/lh_chroot_sysvinit
   dists/trunk/live-helper/helpers/lh_chroot_sysvrc
   dists/trunk/live-helper/helpers/lh_chroot_tasks
   dists/trunk/live-helper/helpers/lh_clean
   dists/trunk/live-helper/helpers/lh_config
   dists/trunk/live-helper/helpers/lh_losetup
   dists/trunk/live-helper/helpers/lh_source
   dists/trunk/live-helper/helpers/lh_source_config
   dists/trunk/live-helper/helpers/lh_source_download
   dists/trunk/live-helper/helpers/lh_source_generic
   dists/trunk/live-helper/helpers/lh_source_hdd
   dists/trunk/live-helper/helpers/lh_source_iso
   dists/trunk/live-helper/helpers/lh_source_md5sum
   dists/trunk/live-helper/helpers/lh_source_net
   dists/trunk/live-helper/helpers/lh_source_usb
   dists/trunk/live-helper/helpers/lh_testroot
   dists/trunk/live-helper/helpers/make-live
Log:


Modified: dists/trunk/live-helper/doc/ChangeLog
===================================================================
--- dists/trunk/live-helper/doc/ChangeLog	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/doc/ChangeLog	2007-04-06 12:36:01 UTC (rev 965)
@@ -1,5 +1,7 @@
 2007-04-06  Daniel Baumann  <daniel at debian.org>
 
+	* functions/breakpoints.sh, helpers/*:
+	  - Added initial breakpoints.
 	* functions/chroot.sh:
 	  - Adding /usr/local to path.
 	* functions/lockfile.sh:

Modified: dists/trunk/live-helper/functions/breakpoints.sh
===================================================================
--- dists/trunk/live-helper/functions/breakpoints.sh	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/functions/breakpoints.sh	2007-04-06 12:36:01 UTC (rev 965)
@@ -6,3 +6,13 @@
 # live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
 # This is free software, and you are welcome to redistribute it
 # under certain conditions; see COPYING for details.
+
+Breakpoint ()
+{
+	BREAKPOINT="${1}"
+
+	Echo_message "Stopping at ${BREAKPOINT}"
+	Echo_message "Press enter to continue..."
+
+	read
+}

Modified: dists/trunk/live-helper/helpers/lh_binary
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary	2007-04-06 12:36:01 UTC (rev 965)
@@ -23,6 +23,7 @@
 Arguments "${@}"
 
 Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary: Init"
 
 # Preparing root filesystem
 lh_binary_chroot "${@}"

Modified: dists/trunk/live-helper/helpers/lh_binary_chroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_chroot	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_chroot	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_chroot: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_encryption
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_encryption	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_encryption	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_encryption: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_grub
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_grub	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_grub	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_grub: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_hdd	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_hdd	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_hdd: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_includes
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_includes	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_includes	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_includes: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_iso
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_iso	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_iso	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_iso: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_linuximage
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_linuximage	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_linuximage	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_linuximage: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_localincludes
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_localincludes	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_localincludes	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_localincludes: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_manifest
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_manifest	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_manifest	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_manifest: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_md5sum
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_md5sum	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_md5sum	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_md5sum: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_memtest86
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_memtest86	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_memtest86	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_memtest86: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_net
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_net	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_net	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_net: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_rootfs
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_rootfs	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_rootfs	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_rootfs: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_syslinux
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_syslinux	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_syslinux	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_syslinux: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_binary_usb
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_usb	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_binary_usb	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "binary_usb: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_bootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_bootstrap	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "bootstrap: Init"
+
 # Starting helper
 Echo_debug "Init ${PROGRAM}"
 

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "bootstrap_cdeboostrap: Init"
+
 # Ensure that a system is built as root
 lh_testroot
 

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "bootstrap_debootstrap: Init"
+
 # Ensure that a system is built as root
 lh_testroot
 

Modified: dists/trunk/live-helper/helpers/lh_build
===================================================================
--- dists/trunk/live-helper/helpers/lh_build	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_build	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "build: Init"
+
 # Bootstrapping system
 lh_bootstrap "${@}"
 

Modified: dists/trunk/live-helper/helpers/lh_chroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_apt
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_apt	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_apt	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_apt: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_debianchroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_debianchroot	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_debianchroot	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_debianchroot: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_hacks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hacks	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_hacks	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_hacks: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_hooks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hooks	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_hooks	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_hooks: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_hosts
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hosts	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_hosts	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_hosts: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_interactive
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_interactive	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_interactive	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_interactive: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_linuximage
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_linuximage	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_linuximage	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_linuximage: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_localhooks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localhooks	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_localhooks	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_localhooks: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_localincludes
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localincludes	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_localincludes	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_localincludes: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_localization
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localization	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_localization	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_localization: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_localpackages
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localpackages	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_localpackages	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_localpackages: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_localpackageslists
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localpackageslists	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_localpackageslists	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_localpackageslists: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_packages
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_packages	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_packages	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_packages: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_packageslists
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_packageslists	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_packageslists	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_packageslists: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_proc
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_proc	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_proc	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_proc: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_resolv
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_resolv	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_resolv	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_resolv: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_sources
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sources	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_sources	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_sources: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_symlinks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_symlinks	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_symlinks	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_symlinks: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysfs
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysfs	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysfs	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_sysfs: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysvinit
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysvinit	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysvinit	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_sysvinit: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysvrc
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysvrc	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysvrc	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_sysvrc: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_chroot_tasks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_tasks	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_chroot_tasks	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "chroot_tasks: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_clean
===================================================================
--- dists/trunk/live-helper/helpers/lh_clean	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_clean	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "clean: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_config
===================================================================
--- dists/trunk/live-helper/helpers/lh_config	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_config	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "config: Init"
+
 if [ "${1}" != "newconfig" ]
 then
 	# Source existing configuration

Modified: dists/trunk/live-helper/helpers/lh_losetup
===================================================================
--- dists/trunk/live-helper/helpers/lh_losetup	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_losetup	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "losetup: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source
===================================================================
--- dists/trunk/live-helper/helpers/lh_source	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_config
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_config	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_config	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_config: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_download
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_download	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_download	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_download: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_generic
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_generic	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_generic	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_generic: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_hdd	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_hdd	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_hdd: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_iso
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_iso	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_iso	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_iso: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_md5sum
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_md5sum	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_md5sum	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_md5sum: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_net
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_net	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_net	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_net: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_source_usb
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_usb	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_source_usb	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "source_usb: Init"
+
 # Reading configuration files
 Read_conffile config/bootstrap
 Read_conffile config/chroot

Modified: dists/trunk/live-helper/helpers/lh_testroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_testroot	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/lh_testroot	2007-04-06 12:36:01 UTC (rev 965)
@@ -22,6 +22,9 @@
 
 Arguments "${@}"
 
+Echo_debug "Init ${PROGRAM}"
+Breakpoint "testroot: Init"
+
 set -e
 
 # Checking user account

Modified: dists/trunk/live-helper/helpers/make-live
===================================================================
--- dists/trunk/live-helper/helpers/make-live	2007-04-06 12:16:12 UTC (rev 964)
+++ dists/trunk/live-helper/helpers/make-live	2007-04-06 12:36:01 UTC (rev 965)
@@ -31,13 +31,13 @@
 # Set static variables
 PROGRAM="`basename ${0}`"
 DESCRIPTION="utility to build Debian Live systems"
-USAGE="${PROGRAM} [config] [--apt apt|aptitude] [--apt-ftpproxy URL] [--apt-httpproxy URL] [--apt-generic enabled|disabled] [--apt-pdiffs enabled|disabled] [--apt-recommends enabled|disabled] [--apt-secure enabled|disabled] [--bootstrap cdebootstrap|deboostrap] [--cache enabled|disabled] [--debconf-frontend dialog|readline|noninteractive] [--debconf-priority low|medium|high|critical] [--genisoimage genisoimage|mkisofs] [--losetup losetup|losetup.org] [-r|--root DIRECTORY] [-a|--architecture ARCHITECTURE] [-d|--distribution testing|unstable|etch|sid] [--distribution-config DIRECTORY] [-f|--bootstrap-flavour minimal|standard] [-m|--mirror-build URL] [--mirror-build-security URL] [--mirror-image URL] [--mirror-image-security URL] [--sections SECTION|\"SECTIONS\"] [--interactive shell|x11|xnest] [-k|--kernel-flavour FLAVOUR] [--kernel-packages PACKAGES] [-l|--language LANGUAGE] [--packages PACKAGE|\"PACKAGES\"] [-p|--packages-lists LIST|\"LISTS\"] [--tasks TASK|\"TASKS\"] [--security enabled|disabled] [--symlinks enabled|disabled] [--sysvinit enabled|disabled] [--bootappend KERNEL_PARAMETER|\"KERNEL_PARAMETERS\"] [-e|--encryption ALGORITHM] [--username NAME] [--hostname NAME] [--filesystem ext2|plain|squashfs] [--memtest86 enabled|disabled] [--iso-volume STRING] [--server-address HOSTNAME|IP] [--server-path DIRECTORY] [--source enabled|disabled] [--bootloader grub|syslinux] [--grub-splash FILE] [--syslinux-splash FILE] [-b|--binary-image hdd|iso|usb|net] [-s|--source-image generic|hdd|iso|usb|net] [--includes PATH] [--templates PATH] [--debug] [--force] [--quiet] [--verbose]"
+USAGE="${PROGRAM} [config] [--apt apt|aptitude] [--apt-ftpproxy URL] [--apt-httpproxy URL] [--apt-generic enabled|disabled] [--apt-pdiffs enabled|disabled] [--apt-recommends enabled|disabled] [--apt-secure enabled|disabled] [--bootstrap cdebootstrap|deboostrap] [--cache enabled|disabled] [--debconf-frontend dialog|readline|noninteractive] [--debconf-priority low|medium|high|critical] [--genisoimage genisoimage|mkisofs] [--losetup losetup|losetup.org] [-r|--root DIRECTORY] [-a|--architecture ARCHITECTURE] [-d|--distribution testing|unstable|etch|sid] [--distribution-config DIRECTORY] [-f|--bootstrap-flavour minimal|standard] [-m|--mirror-build URL] [--mirror-build-security URL] [--mirror-image URL] [--mirror-image-security URL] [--sections SECTION|\"SECTIONS\"] [--interactive shell|x11|xnest] [-k|--kernel-flavour FLAVOUR] [--kernel-packages PACKAGES] [-l|--language LANGUAGE] [--packages PACKAGE|\"PACKAGES\"] [-p|--packages-lists LIST|\"LISTS\"] [--tasks TASK|\"TASKS\"] [--security enabled|disabled] [--symlinks enabled|disabled] [--sysvinit enabled|disabled] [--bootappend KERNEL_PARAMETER|\"KERNEL_PARAMETERS\"] [-e|--encryption ALGORITHM] [--username NAME] [--hostname NAME] [--filesystem ext2|plain|squashfs] [--memtest86 enabled|disabled] [--iso-volume STRING] [--server-address HOSTNAME|IP] [--server-path DIRECTORY] [--source enabled|disabled] [--bootloader grub|syslinux] [--grub-splash FILE] [--syslinux-splash FILE] [-b|--binary-image hdd|iso|usb|net] [-s|--source-image generic|hdd|iso|usb|net] [--includes PATH] [--templates PATH] [--breakpoints] [--debug] [--force] [--quiet] [--verbose]"
 
 HELP="Lists: gnome, gnome-core, gnome-desktop, gnome-full, gnome-junior, gnustep, kde, kde-core, kde-desktop, kde-extra, kde-full, kde-junior, mini, minimal, minimal-net, rescue, standard, standard-x11, xfce, xfce-desktop, xfce-junior"
 
 Local_arguments ()
 {
-	ARGUMENTS="`getopt --longoptions apt:,apt-ftpproxy:,apt-httpproxy:,apt-generic:,apt-pdiffs:,apt-recommends:,apt-secure:,bootstrap:,cache:,debconf-frontend:,debconf-priority:,genisoimage:,losetup:,root:,architecture:,distribution:,distribution-config:,flavour:,mirror-local:,mirror-local-security:,mirror-generic:,mirror-generic-security:,sections:,interactive:,kernel:,kernel-packages:,language:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,bootappend:,encryption:,username:,hostname:,filesystem:,memtest86:,iso-volume:,server-address:,server-path:,source:,bootloader:,grub-splash:,syslinux-splash:,binary-image:,binary-source:,includes:,templates:,help,usage,version,force,debug,quiet,verbose --name=${PROGRAM} --options r:a:d:f:m:k:l:p:e:b:s:huv --shell sh -- "${@}"`"
+	ARGUMENTS="`getopt --longoptions apt:,apt-ftpproxy:,apt-httpproxy:,apt-generic:,apt-pdiffs:,apt-recommends:,apt-secure:,bootstrap:,cache:,debconf-frontend:,debconf-priority:,genisoimage:,losetup:,root:,architecture:,distribution:,distribution-config:,flavour:,mirror-local:,mirror-local-security:,mirror-generic:,mirror-generic-security:,sections:,interactive:,kernel:,kernel-packages:,language:,packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,bootappend:,encryption:,username:,hostname:,filesystem:,memtest86:,iso-volume:,server-address:,server-path:,source:,bootloader:,grub-splash:,syslinux-splash:,binary-image:,binary-source:,includes:,templates:,help,usage,version,force,breakpoints,debug,quiet,verbose --name=${PROGRAM} --options r:a:d:f:m:k:l:p:e:b:s:huv --shell sh -- "${@}"`"
 
 	if [ "${?}" != "0" ]
 	then
@@ -273,6 +273,10 @@
 				Version; shift
 				;;
 
+			--breakpoints)
+				LH_BREAKPOINTS="true"; shift
+				;;
+
 			--debug)
 				LH_DEBUG="true"; shift
 				;;
@@ -323,6 +327,11 @@
 	# Configuring (this is really shit!)
 	LH_APT="${LH_APT}" LH_APT_FTPPROXY="${LH_APT_FTPPROXY}" LH_APT_HTTPPROXY="${LH_APT_HTTPPROXY}" LH_APT_GENERIC="${LH_APT_GENERIC}" LH_APT_PDIFFS="${LH_APT_PDIFFS}" LH_APT_RECOMMENDS="${LH_APT_RECOMMENDS}" LH_APT_SECURE="${LH_APT_SECURE}" LH_BOOTSTRAP="${LH_BOOTSTRAP}" LH_CACHE="${LH_CACHE}" LH_DEBCONF_FRONTEND="${LH_DEBCONF_FRONTEND}" LH_DEBCONF_PRIORITY="${LH_DEBCONF_PRIORITY}" LH_GENISOIMAGE="${LH_GENISOIMAGE}" LIVE_ROOT="${LIVE_ROOT}" LIVE_ARCHITECTURE="${LIVE_ARCHITECTURE}" LIVE_DISTRIBUTION="${LIVE_DISTRIBUTION}" LIVE_DISTRIBUTION_CONFIG="${LIVE_DISTRIBUTION_CONFIG}" LIVE_BOOTSTRAP_FLAVOUR="${LIVE_BOOTSTRAP_FLAVOUR}" LIVE_MIRROR_BUILD="${LIVE_MIRROR_BUILD}" LIVE_MIRROR_BUILD_SECURITY="${LIVE_MIRROR_BUILD_SECURITY}" LIVE_MIRROR_IMAGE="${LIVE_MIRROR_IMAGE}" LIVE_MIRROR_IMAGE_SECURITY="${LIVE_MIRROR_IMAGE_SECURITY}" LIVE_SECTIONS="${LIVE_SECTIONS}" LIVE_INTERACTIVE="${LIVE_INTERACTIVE}" LIVE_KERNEL_FLAVOUR="${LIVE_KERNEL_FLAVOUR}" LIVE_KERNEL_PACKAGES="${LIVE_KERNEL_PACKAGES}" LIVE_LANGUAGE="${LIVE_LANGUAGE}" LIVE_PACKAGES="${LIVE_PACKAGES}" LIVE_PACKAGES_LISTS="${LIVE_PACKAGES_LISTS}" LIVE_TASKS="${LIVE_TASKS}" LIVE_SECURITY="${LIVE_SECURITY}" LIVE_SYMLINKS="${LIVE_SYMLINKS}" LIVE_SYSVINIT="${LIVE_SYSVINIT}" LIVE_BOOTAPPEND="${LIVE_BOOTAPPEND}" LIVE_ENCRYPTION="${LIVE_ENCRYPTION}" LIVE_USERNAME="${LIVE_USERNAME}" LIVE_HOSTNAME="${LIVE_HOSTNAME}" LIVE_FILESYSTEM="${LIVE_FILESYSTEM}" LIVE_MEMTEST86="${LIVE_MEMTEST86}" LIVE_ISO_VOLUME="${LIVE_ISO_VOLUME}" LIVE_SERVER_ADDRESS="${LIVE_SERVER_ADDRESS}" LIVE_SERVER_PATH="${LIVE_SERVER_PATH}" LIVE_SOURCE="${LIVE_SOURCE}" LIVE_BOOTLOADER="${LIVE_BOOTLOADER}" LIVE_GRUB_SPLASH="${LIVE_GRUB_SPLASH}" LIVE_SYSLINUX_SPLASH="${LIVE_SYSLINUX_SPLASH}" LIVE_BINARY_IMAGE="${LIVE_BINARY_IMAGE}" LIVE_SOURCE_IMAGE="${LIVE_SOURCE_IMAGE}" LIVE_INCLUDES="${LIVE_INCLUDES}" LIVE_TEMPLATES="${LIVE_TEMPLATES}" lh_config newconfig
 
+	if [ "${LH_BREAKPOINTS}" = "true" ]
+	then
+		OPTIONS="${OPTIONS} --breakpoints"
+	fi
+
 	if [ "${LH_DEBUG}" = "true" ]
 	then
 		OPTIONS="${OPTIONS} --debug"




More information about the Debian-live-changes mailing list