[poky] [PATCH 1/5] bitbake-runtask-strace: simple shell script to wrap tasks in a strace call

Joshua Lock josh at openedhand.com
Fri Nov 12 13:36:31 PST 2010


Signed-off-by: Joshua Lock <josh at linux.intel.com>
---
 bitbake/bin/bitbake-runtask-strace |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)
 create mode 100755 bitbake/bin/bitbake-runtask-strace

diff --git a/bitbake/bin/bitbake-runtask-strace
b/bitbake/bin/bitbake-runtask-strace
new file mode 100755
index 0000000..1741a84
--- /dev/null
+++ b/bitbake/bin/bitbake-runtask-strace
@@ -0,0 +1,8 @@
+#!/bin/bash
+STRACE=`which strace`
+
+if [ ! -x "$STRACE" ]; then
+    bitbake-runtask $1 $2 $3 $4
+else
+    strace -f -o $TRACE_LOGFILE-$3.log -e trace=open,execve
bitbake-runtask $1 $2 $3 $4
+fi
-- 
1.7.3.2





More information about the poky mailing list