[folded-merged] initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Subject: [folded-merged] initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2.patch removed from -mm tree
To: ppandit@xxxxxxxxxx,prasad@xxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx
From: akpm@xxxxxxxxxxxxxxxxxxxx
Date: Tue, 12 Nov 2013 14:43:11 -0800


The patch titled
     Subject: initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2
has been removed from the -mm tree.  Its filename was
     initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2.patch

This patch was dropped because it was folded into initramfs-read-config_rd_-variables-for-initramfs-compression.patch

------------------------------------------------------
From: P J P <ppandit@xxxxxxxxxx>
Subject: initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2

Signed-off-by: P J P <prasad@xxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 scripts/gen_initramfs_list.sh |   18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff -puN scripts/gen_initramfs_list.sh~initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2 scripts/gen_initramfs_list.sh
--- a/scripts/gen_initramfs_list.sh~initramfs-read-config_rd_-variables-for-initramfs-compression-fix-2
+++ a/scripts/gen_initramfs_list.sh
@@ -240,17 +240,23 @@ case "$arg" in
 		output_file="$1"
 		cpio_list="$(mktemp ${TMPDIR:-/tmp}/cpiolist.XXXXXX)"
 		output=${cpio_list}
-		echo "$output_file" | grep -q "\.gz$" && [ -x "/bin/gzip" ] \
+		echo "$output_file" | grep -q "\.gz$" \
+                && [ -x "`which gzip 2> /dev/null`" ] \
                 && compr="gzip -n -9 -f"
-		echo "$output_file" | grep -q "\.bz2$" && [ -x "/bin/bzip2" ] \
+		echo "$output_file" | grep -q "\.bz2$" \
+                && [ -x "`which bzip2 2> /dev/null`" ] \
                 && compr="bzip2 -9 -f"
-		echo "$output_file" | grep -q "\.lzma$" && [ -x "/bin/lzma" ] \
+		echo "$output_file" | grep -q "\.lzma$" \
+                && [ -x "`which lzma 2> /dev/null`" ] \
                 && compr="lzma -9 -f"
-		echo "$output_file" | grep -q "\.xz$" && [ -x "/bin/xz" ] \
+		echo "$output_file" | grep -q "\.xz$" \
+                && [ -x "`which xz 2> /dev/null`" ] \
                 && compr="xz --check=crc32 --lzma2=dict=1MiB"
-		echo "$output_file" | grep -q "\.lzo$" && [ -x "/bin/lzop" ] \
+		echo "$output_file" | grep -q "\.lzo$" \
+                && [ -x "`which lzop 2> /dev/null`" ] \
                 && compr="lzop -9 -f"
-		echo "$output_file" | grep -q "\.lz4$" && [ -x "/bin/lz4" ] \
+		echo "$output_file" | grep -q "\.lz4$" \
+                && [ -x "`which lz4 2> /dev/null`" ] \
                 && compr="lz4 -9 -f"
 		echo "$output_file" | grep -q "\.cpio$" && compr="cat"
 		shift
_

Patches currently in -mm which might be from ppandit@xxxxxxxxxx are

initramfs-read-config_rd_-variables-for-initramfs-compression.patch
makefile-export-initial-ramdisk-compression-config-option.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux