mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 13:45:10 -05:00
Fix the missing c200 detection in bootloader installation. This is completely untested.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14760 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d3ea919999
commit
72e7ea22b5
1 changed files with 2 additions and 1 deletions
|
|
@ -887,7 +887,8 @@ void BootloaderInstaller::sansaPrepare()
|
||||||
|
|
||||||
if(m_install) // Installation
|
if(m_install) // Installation
|
||||||
{
|
{
|
||||||
QString url = m_bootloaderUrlBase + "/sandisk-sansa/e200/" + m_bootloadername;
|
QString url = m_bootloaderUrlBase + "/sandisk-sansa/"
|
||||||
|
+ QString(sansa.targetname) + "/" + m_bootloadername;
|
||||||
|
|
||||||
m_dp->addItem(tr("Downloading file %1.%2")
|
m_dp->addItem(tr("Downloading file %1.%2")
|
||||||
.arg(QFileInfo(url).baseName(), QFileInfo(url).completeSuffix()),LOGINFO);
|
.arg(QFileInfo(url).baseName(), QFileInfo(url).completeSuffix()),LOGINFO);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue