The patch titled gen_initramfs_list.sh: fix unportability has been removed from the -mm tree. Its filename was gen_initramfs_listsh-fix-unportability.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gen_initramfs_list.sh: fix unportability From: Felix Fietkau <nbd@xxxxxxxxxxx> On a Mac OS X machine the output of ls -l is different from a standard Linux machine. Use readlink instead of parsing a hardcoded field number from the ls output. Signed-off-by: Felix Fietkau <nbd@xxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/gen_initramfs_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/gen_initramfs_list.sh~gen_initramfs_listsh-fix-unportability scripts/gen_initramfs_list.sh --- a/scripts/gen_initramfs_list.sh~gen_initramfs_listsh-fix-unportability +++ a/scripts/gen_initramfs_list.sh @@ -135,7 +135,7 @@ parse() { str="${ftype} ${name} ${str} ${dev} ${maj} ${min}" ;; "slink") - local target=`field 11 $(LC_ALL=C ls -l "${location}")` + local target=`readlink "${location}"` str="${ftype} ${name} ${target} ${str}" ;; *) _ Patches currently in -mm which might be from nbd@xxxxxxxxxxx are origin.patch git-kbuild.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