summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-10 11:50:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-10 11:51:48 +0000
commit296866c38e1b88df42d66bdc32cfed2d5212914c (patch)
treef56631b4a7ed520ad4c7198c14a8746cc30cd01b /bitbake/bin
parentd3d236b2bf2784d7454dcb7fce595b6aac6967cd (diff)
downloadpoky-296866c38e1b88df42d66bdc32cfed2d5212914c.tar.gz
image-swab: Convert to attach strace to the process to obtain the required swabber data
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake-runtask-strace8
1 files changed, 0 insertions, 8 deletions
diff --git a/bitbake/bin/bitbake-runtask-strace b/bitbake/bin/bitbake-runtask-strace
deleted file mode 100755
index 1741a84de2..0000000000
--- a/bitbake/bin/bitbake-runtask-strace
+++ /dev/null
@@ -1,8 +0,0 @@
1#!/bin/bash
2STRACE=`which strace`
3
4if [ ! -x "$STRACE" ]; then
5 bitbake-runtask $1 $2 $3 $4
6else
7 strace -f -o $TRACE_LOGFILE-$3.log -e trace=open,execve bitbake-runtask $1 $2 $3 $4
8fi