From 0b5f0b92846d45bdb39f2ef0866f7f643b74c2da Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 23 Aug 2020 16:51:44 +0200 Subject: rbutil: Fix Xduoo bootloader installation. - Don't try to unzip the bootloader file if we're actually looking for a zip file. - Fix wrong bootloader file name for X3. - There's no QThread::terminated() signal, don't connect it. Change-Id: Iebfcc61d644c8443b60d9b37f4932d7b46098465 --- rbutil/rbutilqt/base/bootloaderinstallbase.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'rbutil/rbutilqt/base/bootloaderinstallbase.cpp') diff --git a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp index 30f53ae810..5f8fd40d08 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp @@ -224,11 +224,20 @@ void BootloaderInstallBase::setBlFile(QStringList sl) bool BootloaderInstallBase::setOfFile(QString of, QStringList blfile) { bool found = false; - ArchiveUtil *util = 0; + ArchiveUtil *util = nullptr; + + // check if we're actually looking for a zip file. If so we must avoid + // trying to unzip it. + bool wantZip = false; + for (int i = 0; i < blfile.size(); i++) + { + if (blfile.at(i).endsWith(".zip")) + wantZip = true; + } // try ZIP first ZipUtil *zu = new ZipUtil(this); - if(zu->open(of)) + if(zu->open(of) && !wantZip) { emit logItem(tr("Zip file format detected"), LOGINFO); util = zu; -- cgit v1.2.3