aboutsummaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-11-28 01:46:11 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-11-28 01:46:11 +0000
commit5f804973aefd36d204b2d48064800a392c9bfab2 (patch)
tree8afa9dea216b8c6742500e4acf2102785ef1c327 /main
parentd2bea1918fa33f5e92ed75f3f744c119439924bc (diff)
downloadenigma2-5f804973aefd36d204b2d48064800a392c9bfab2.tar.gz
enigma2-5f804973aefd36d204b2d48064800a392c9bfab2.zip
append md5sum information of enigma2 python files in order to help improve crash reports.
Diffstat (limited to 'main')
-rw-r--r--main/bsod.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/bsod.cpp b/main/bsod.cpp
index b646394e..b273eacf 100644
--- a/main/bsod.cpp
+++ b/main/bsod.cpp
@@ -86,6 +86,10 @@ void bsodFatal()
std::string buffer = getLogBuffer();
fwrite(buffer.c_str(), buffer.size(), 1, f);
fclose(f);
+
+ char cmd[256];
+ sprintf(cmd, "find /usr/lib/enigma2/python/ -name \"*.py\" | xargs md5sum >> %s", logfile);
+ system(cmd);
}
ePtr<gFBDC> my_dc;