From e43ef1f3e7630a112378773e0ba9c6c020b2e65f Mon Sep 17 00:00:00 2001 From: Cástor Muñoz Date: Fri, 5 Feb 2016 00:25:31 +0100 Subject: rbutil: add support for iPod Classic 6G bootloader Change-Id: I0e237a81098a2d4df8d9f5d6deaaab3863a84fc6 --- rbutil/rbutilqt/base/bootloaderinstallhelper.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rbutil/rbutilqt/base/bootloaderinstallhelper.cpp') diff --git a/rbutil/rbutilqt/base/bootloaderinstallhelper.cpp b/rbutil/rbutilqt/base/bootloaderinstallhelper.cpp index fe962d2b1d..d6d2dbc7a1 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallhelper.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallhelper.cpp @@ -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; } -- cgit v1.2.3