X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/6dcb75c26bbfec04b381bb99d75404f9fe50635d..c862e78892bcf02650d3a490f274fb067a964872:/main/bsod.cpp 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 my_dc;