summaryrefslogtreecommitdiffstats
path: root/package/kexec/kexec-patch.sh
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-27 07:34:44 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-27 07:34:44 +0000
commita0511a12917f1478b00e57254e50a42fbb26d8a5 (patch)
tree9b7515875a8541b4fb499ab076f4d6a52246285c /package/kexec/kexec-patch.sh
parent0155044c8557df2571dbcba4d91936eecf7fb124 (diff)
downloadbuildroot-novena-a0511a12917f1478b00e57254e50a42fbb26d8a5.tar.gz
buildroot-novena-a0511a12917f1478b00e57254e50a42fbb26d8a5.zip
Patch kexec inside makefile
Diffstat (limited to 'package/kexec/kexec-patch.sh')
-rwxr-xr-xpackage/kexec/kexec-patch.sh16
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
-