From f6060d62d90c6920bd6edf9ed618f41b9cf7b60f Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sun, 19 Jul 2020 17:13:55 -0400 Subject: 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 --- rbutil/rbutilqt/base/bootloaderinstallbspatch.h | 47 +++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 rbutil/rbutilqt/base/bootloaderinstallbspatch.h (limited to 'rbutil/rbutilqt/base/bootloaderinstallbspatch.h') diff --git a/rbutil/rbutilqt/base/bootloaderinstallbspatch.h b/rbutil/rbutilqt/base/bootloaderinstallbspatch.h new file mode 100644 index 0000000000..7108820fda --- /dev/null +++ b/rbutil/rbutilqt/base/bootloaderinstallbspatch.h @@ -0,0 +1,47 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2020 Solomon Peachy + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef BOOTLOADERINSTALLBSPATCH_H +#define BOOTLOADERINSTALLBSPATCH_H + +#include +#include "bootloaderinstallbase.h" + +class BootloaderThreadBSPatch; + +//! bootloader installation class for devices handled by mkimxboot. +class BootloaderInstallBSPatch : public BootloaderInstallBase +{ + Q_OBJECT + public: + BootloaderInstallBSPatch(QObject *parent); + bool install(void); + bool uninstall(void); + BootloaderInstallBase::BootloaderType installed(void); + Capabilities capabilities(void); + QString ofHint(); + + private slots: + void installStage2(void); + void installStage3(void); + + private: + BootloaderThreadBSPatch *m_thread; + QTemporaryFile m_patchedFile; +}; + +#endif -- cgit v1.2.3