From 1f701d41775cbdb0378a595683f77202766ed9bd Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel@debian.org>
Date: Fri, 21 May 2010 07:27:44 +0200
Subject: Renaming manifest files to packages on debian.

---
 helpers/binary_manifest | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/helpers/binary_manifest b/helpers/binary_manifest
index 4ec95eb..2777ada 100755
--- a/helpers/binary_manifest
+++ b/helpers/binary_manifest
@@ -45,17 +45,20 @@ Create_lockfile .lock
 case "${LH_INITRAMFS}" in
 	casper)
 		INITFS="casper"
+		SUFFIX="manifest"
 		;;
 
 	live-initramfs)
 		INITFS="live"
+		SUFFIX="packages"
 		;;
 esac
 
-# Add filesystem.manifest
-Chroot chroot "dpkg-query -W" > binary/"${INITFS}"/filesystem.manifest
-# Copy filesystem.manifest in image to binary.manifest as build output.
-cp binary/"${INITFS}"/filesystem.manifest binary.manifest
+# Add filesystem.packages
+Chroot chroot "dpkg-query -W" > binary/"${INITFS}"/filesystem.${SUFFIX}
+
+# Copy manifest as build output.
+cp binary/"${INITFS}"/filesystem.${SUFFIX} binary.${SUFFIX}
 
 # Creating stage file
 Create_stagefile .stage/binary_manifest
-- 
cgit v1.0