diff options
Diffstat (limited to 'rbutil/rbutilqt/base/bootloaderinstallhex.cpp')
| -rw-r--r-- | rbutil/rbutilqt/base/bootloaderinstallhex.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallhex.cpp b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp index 3165998..994a7cb 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallhex.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp @@ -74,7 +74,7 @@ bool BootloaderInstallHex::install(void) file.close(); QString hash = QCryptographicHash::hash(filedata, QCryptographicHash::Md5).toHex(); - qDebug() << "hexfile hash:" << hash; + qDebug() << "[BootloaderInstallHex] hexfile hash:" << hash; if(file.error() != QFile::NoError) { emit logItem(tr("Could not verify original firmware file"), LOGERROR); emit done(true); @@ -112,7 +112,7 @@ bool BootloaderInstallHex::install(void) int result; result = iriver_decode(m_offile.toAscii().data(), m_descrambled.fileName().toAscii().data(), FALSE, STRIP_NONE); - qDebug() << "iriver_decode" << result; + qDebug() << "[BootloaderInstallHex] iriver_decode" << result; if(result < 0) { emit logItem(tr("Error in descramble: %1").arg(scrambleError(result)), LOGERROR); @@ -200,7 +200,7 @@ void BootloaderInstallHex::installStage2(void) targethex.close(); QString hash = QCryptographicHash::hash(filedata, QCryptographicHash::Md5).toHex(); - qDebug() << "created hexfile hash:" << hash; + qDebug() << "[BootloaderInstallHex] created hexfile hash:" << hash; emit logItem(tr("Checking modified firmware file"), LOGINFO); if(hash != QString(md5sums[m_hashindex].patched)) { |