mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-17 17:12:39 -05:00
rbutil: add support for iPod Classic 6G bootloader
Change-Id: I0e237a81098a2d4df8d9f5d6deaaab3863a84fc6
This commit is contained in:
parent
c353bef3d1
commit
e43ef1f3e7
9 changed files with 519 additions and 5 deletions
|
|
@ -31,6 +31,7 @@
|
|||
#include "bootloaderinstalltcc.h"
|
||||
#include "bootloaderinstallmpio.h"
|
||||
#include "bootloaderinstallimx.h"
|
||||
#include "bootloaderinstalls5l.h"
|
||||
|
||||
BootloaderInstallBase* BootloaderInstallHelper::createBootloaderInstaller(QObject* parent, QString type)
|
||||
{
|
||||
|
|
@ -64,6 +65,9 @@ BootloaderInstallBase* BootloaderInstallHelper::createBootloaderInstaller(QObjec
|
|||
else if(type == "imx") {
|
||||
return new BootloaderInstallImx(parent);
|
||||
}
|
||||
else if(type == "s5l") {
|
||||
return new BootloaderInstallS5l(parent);
|
||||
}
|
||||
else {
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue