mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-14 15:42:28 -05:00
rbutil: Add support for the xDuoo X3, X3ii, X20, and AGPTek Rocker.
* All include full bootloader installation! * X20 lack USB VID/PIDs so cannot be autodetected. * Benjie T6 (variant/OEM of the Rocker) USB VID/PID unknown. Change-Id: Ia823de072c83506d36410ec436be15a0caf97151
This commit is contained in:
parent
561937f2f4
commit
f6060d62d9
5 changed files with 296 additions and 2 deletions
|
|
@ -32,6 +32,7 @@
|
|||
#include "bootloaderinstallmpio.h"
|
||||
#include "bootloaderinstallimx.h"
|
||||
#include "bootloaderinstalls5l.h"
|
||||
#include "bootloaderinstallbspatch.h"
|
||||
|
||||
BootloaderInstallBase* BootloaderInstallHelper::createBootloaderInstaller(QObject* parent, QString type)
|
||||
{
|
||||
|
|
@ -68,10 +69,12 @@ BootloaderInstallBase* BootloaderInstallHelper::createBootloaderInstaller(QObjec
|
|||
else if(type == "s5l") {
|
||||
return new BootloaderInstallS5l(parent);
|
||||
}
|
||||
else if(type == "bspatch") {
|
||||
return new BootloaderInstallBSPatch(parent);
|
||||
}
|
||||
else {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -134,4 +137,3 @@ QString BootloaderInstallHelper::postinstallHints(QString model)
|
|||
else
|
||||
return QString();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue