diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-08-09 10:57:33 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2009-08-09 10:57:33 +0000 |
| commit | 63ba647ee0fcdcb42f1e36e4a8f82c6c40cbb8f2 (patch) | |
| tree | b13d4c5767f8b084d78cc0598cc4abe4cdc8a6ea /rbutil/rbutilqt/base/bootloaderinstallfile.cpp | |
| parent | 7aaa544f09ae2f2cf0cd64cbd3f72c0714a94eba (diff) | |
| download | rockbox-63ba647ee0fcdcb42f1e36e4a8f82c6c40cbb8f2.zip rockbox-63ba647ee0fcdcb42f1e36e4a8f82c6c40cbb8f2.tar.gz rockbox-63ba647ee0fcdcb42f1e36e4a8f82c6c40cbb8f2.tar.bz2 rockbox-63ba647ee0fcdcb42f1e36e4a8f82c6c40cbb8f2.tar.xz | |
Clean up bootloader installation debug output a bit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22219 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/base/bootloaderinstallfile.cpp')
| -rw-r--r-- | rbutil/rbutilqt/base/bootloaderinstallfile.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallfile.cpp b/rbutil/rbutilqt/base/bootloaderinstallfile.cpp index 0c12b05..0db39a5 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallfile.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallfile.cpp @@ -33,7 +33,7 @@ BootloaderInstallFile::BootloaderInstallFile(QObject *parent) bool BootloaderInstallFile::install(void) { emit logItem(tr("Downloading bootloader"), LOGINFO); - qDebug() << __func__; + qDebug() << "[BootloaderInstallFile] installing bootloader"; downloadBlStart(m_blurl); connect(this, SIGNAL(downloadDone()), this, SLOT(installStage2())); return true; @@ -48,7 +48,7 @@ void BootloaderInstallFile::installStage2(void) QString fwfile(resolvePathCase(m_blfile)); if(!fwfile.isEmpty()) { QString moved = resolvePathCase(m_blfile) + ".ORIG"; - qDebug() << "renaming" << fwfile << "->" << moved; + qDebug() << "[BootloaderInstallFile] renaming" << fwfile << "to" << moved; QFile::rename(fwfile, moved); } @@ -82,7 +82,7 @@ void BootloaderInstallFile::installStage2(void) // place (new) bootloader m_tempfile.open(); - qDebug() << "renaming" << m_tempfile.fileName() << "->" << fwfile; + qDebug() << "[BootloaderInstallFile] renaming" << m_tempfile.fileName() << "to" << fwfile; m_tempfile.close(); m_tempfile.rename(fwfile); @@ -95,7 +95,7 @@ void BootloaderInstallFile::installStage2(void) bool BootloaderInstallFile::uninstall(void) { - qDebug() << __func__; + qDebug() << "[BootloaderInstallFile] Uninstalling bootloader"; emit logItem(tr("Removing Rockbox bootloader"), LOGINFO); // check if a .ORIG file is present, and allow moving it back. QString origbl = resolvePathCase(m_blfile + ".ORIG"); @@ -127,7 +127,7 @@ bool BootloaderInstallFile::uninstall(void) //! @return BootloaderRockbox, BootloaderOther or BootloaderUnknown. BootloaderInstallBase::BootloaderType BootloaderInstallFile::installed(void) { - qDebug("%s()", __func__); + qDebug() << "[BootloaderInstallFile] checking installed bootloader"; if(!resolvePathCase(m_blfile).isEmpty() && !resolvePathCase(m_blfile + ".ORIG").isEmpty()) return BootloaderRockbox; @@ -140,7 +140,7 @@ BootloaderInstallBase::BootloaderType BootloaderInstallFile::installed(void) BootloaderInstallBase::Capabilities BootloaderInstallFile::capabilities(void) { - qDebug() << __func__; + qDebug() << "[BootloaderInstallFile] getting capabilities"; return Install | IsFile | CanCheckInstalled | Backup; } |