From: John Voltz Date: Thu, 13 Mar 2008 17:10:40 +0000 (-0000) Subject: make patch-kernel create lists of applied patches, very handy indeed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=417c4acc4a75023237687193249f06e542e4e8b1;p=buildroot.git make patch-kernel create lists of applied patches, very handy indeed --- diff --git a/toolchain/patch-kernel.sh b/toolchain/patch-kernel.sh index b6722cecd9..5a29c6773a 100755 --- a/toolchain/patch-kernel.sh +++ b/toolchain/patch-kernel.sh @@ -37,6 +37,7 @@ for i in `cd ${patchdir}; ls -d ${patchpattern} 2> /dev/null` ; do esac echo "" echo "Applying ${i} using ${type}: " + echo ${i} | cat >> ${targetdir}/.applied_patches_list ${uncomp} ${patchdir}/${i} | patch -p1 -E -d ${targetdir} if [ $? != 0 ] ; then echo "Patch failed! Please fix $i!"