diff options
Diffstat (limited to 'package/kexec/kexec-patch.sh')
-rwxr-xr-x | package/kexec/kexec-patch.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/package/kexec/kexec-patch.sh b/package/kexec/kexec-patch.sh deleted file mode 100755 index 4889705fc..000000000 --- a/package/kexec/kexec-patch.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -SRCDIR=$1 -PATCHDIR=$2 -PATCHLIST=${PATCHDIR}/$3 - -do_patch() -{ - cd ${SRCDIR} - for f in `cat ${PATCHLIST}` ; do - echo ${PATCHDIR}/$f - cat ${PATCHDIR}/$f | patch -p2 - done -} - -do_patch - |