summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorLudovic Desroches <ludovic.desroches@atmel.com>2012-03-14 16:33:55 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2012-03-20 23:52:29 +0100
commit1b58957a9637d3b3d1ae13ec26096d737fdd1a45 (patch)
tree32e32280a863935f8c3e3ba0f8c9fc310db2293e /support
parent1b671d477bc3154c1c72e2a770b8a97e4566a359 (diff)
apply-patches.sh: directories are no more considered as overlays
When a directory is found in patchdir, it is skipped. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Tested-by: Ludovic Desroches <ludovic.desroches@atmel.com> with an armadeus_apf9328_defconfig build Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/scripts/apply-patches.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/support/scripts/apply-patches.sh b/support/scripts/apply-patches.sh
index c741a6320..3d655f144 100755
--- a/support/scripts/apply-patches.sh
+++ b/support/scripts/apply-patches.sh
@@ -30,10 +30,7 @@ for i in `cd ${patchdir}; ls -d ${patchpattern} 2> /dev/null` ; do
apply="patch -g0 -p1 -E -d"
uncomp_parm=""
if [ -d "${patchdir}/$i" ] ; then
- type="directory overlay"
- uncomp="tar cf - --exclude=.svn --no-anchored -C"
- uncomp_parm="."
- apply="tar xvf - -C"
+ echo "${patchdir}/$i skipped"
else case "$i" in
*.gz)
type="gzip"; uncomp="gunzip -dc"; ;;