rbutil: add support for iPod Classic 6G bootloader

Change-Id: I0e237a81098a2d4df8d9f5d6deaaab3863a84fc6
This commit is contained in:
Cástor Muñoz 2016-02-05 00:25:31 +01:00 committed by Franklin Wei
parent c353bef3d1
commit e43ef1f3e7
9 changed files with 519 additions and 5 deletions

View file

@ -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;
}