diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-27 07:34:44 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-27 07:34:44 +0000 |
commit | a0511a12917f1478b00e57254e50a42fbb26d8a5 (patch) | |
tree | 9b7515875a8541b4fb499ab076f4d6a52246285c /package/kexec/kexec-patch.sh | |
parent | 0155044c8557df2571dbcba4d91936eecf7fb124 (diff) | |
download | buildroot-novena-a0511a12917f1478b00e57254e50a42fbb26d8a5.tar.gz buildroot-novena-a0511a12917f1478b00e57254e50a42fbb26d8a5.zip |
Patch kexec inside makefile
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 - |