mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-21 02:52:50 -05:00
rbutil: fix the complete installation.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15213 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
04f1eaf4f0
commit
f697158de1
1 changed files with 5 additions and 3 deletions
|
|
@ -409,7 +409,10 @@ bool RbUtilQt::smallInstallInner()
|
||||||
}
|
}
|
||||||
// Bootloader
|
// Bootloader
|
||||||
devices->beginGroup(userSettings->value("platform").toString());
|
devices->beginGroup(userSettings->value("platform").toString());
|
||||||
if(devices->value("needsbootloader", "") == "yes") {
|
QString needBootloader = devices->value("needsbootloader", "").toString();
|
||||||
|
devices->endGroup();
|
||||||
|
if(needBootloader == "yes")
|
||||||
|
{
|
||||||
m_error = false;
|
m_error = false;
|
||||||
m_installed = false;
|
m_installed = false;
|
||||||
if(!installBootloaderAuto())
|
if(!installBootloaderAuto())
|
||||||
|
|
@ -423,7 +426,6 @@ bool RbUtilQt::smallInstallInner()
|
||||||
if(m_error) return true;
|
if(m_error) return true;
|
||||||
logger->undoAbort();
|
logger->undoAbort();
|
||||||
}
|
}
|
||||||
devices->endGroup();
|
|
||||||
|
|
||||||
// Rockbox
|
// Rockbox
|
||||||
m_error = false;
|
m_error = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue