From 8e4d49340bd235a7db8fde1d24dd1d63ddc4d571 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 28 Aug 2016 16:11:51 +0200 Subject: use the new file based approach for the mar creation Change-Id: Ie025709b76960b1dd850fbb2d1f114f7a413611a --- bin/update/make_full_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/update/make_full_update.sh b/bin/update/make_full_update.sh index 37cd22e76292..138f7472b073 100755 --- a/bin/update/make_full_update.sh +++ b/bin/update/make_full_update.sh @@ -97,6 +97,7 @@ for ((i=0; $i<$num_files; i=$i+1)); do copy_perm "$targetdir/$f" "$workdir/$f" targetfiles="$targetfiles \"$f\"" + echo $f >> $workdir/files.txt done # Append remove instructions for any dead files. @@ -107,7 +108,7 @@ append_remove_instructions "$targetdir" "$updatemanifestv2" "$updatemanifestv3" $BZIP2 -z9 "$updatemanifestv2" && mv -f "$updatemanifestv2.bz2" "$updatemanifestv2" $BZIP2 -z9 "$updatemanifestv3" && mv -f "$updatemanifestv3.bz2" "$updatemanifestv3" -eval "$MAR -C \"$workdir\" -c output.mar $targetfiles" +eval "$MAR -C \"$workdir\" -c output.mar -f $workdir/files.txt" mv -f "$workdir/output.mar" "$archive" # cleanup -- cgit