From a010abf10e78ac3385af9094e320c462cdd3a59a Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel@debian.org>
Date: Sun, 8 Feb 2009 10:58:55 +0100
Subject: Moving binary manifest to live subdirectory on the images.

---
 helpers/lh_binary_manifest | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/helpers/lh_binary_manifest b/helpers/lh_binary_manifest
index 940cf07..b7d5b91 100755
--- a/helpers/lh_binary_manifest
+++ b/helpers/lh_binary_manifest
@@ -37,22 +37,29 @@ Check_lockfile .lock
 # Creating lock file
 Create_lockfile .lock
 
-if [ "${LH_INITRAMFS}" = "casper" ]
-then
-	# Add filesystem.manifest
-	Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest
-fi
+case "${LH_INITRAMFS}" in
+	casper)
+		INITFS="casper"
+
+		# Add filesystem.manifest
+		Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest
+		;;
+
+	live-initramfs)
+		INITFS="live"
+		;;
+esac
 
 # Add packages.list
-cat > binary/packages.txt << EOF
+cat > binary/${INITFS}/packages.txt << EOF
 This file contains the list of all packages installed in this live system.
 
 
 EOF
 
-Chroot chroot "dpkg -l" >> binary/packages.txt
+Chroot chroot "dpkg -l" >> binary/${INITFS}/packages.txt
 
-cp binary/packages.txt binary.packages
+cp binary/${INITFS}/packages.txt binary.packages
 
 # Creating stage file
 Create_stagefile .stage/binary_manifest
-- 
cgit v1.0