├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── stale.yml ├── .gitignore ├── Blank Flash ├── blank-flash.bat ├── qboot ├── qboot.dll ├── qboot.exe └── qboot.ini ├── Bootloader └── motoboot.img ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Drivers ├── Motorola Device Manager.MD ├── QualcommDrv.zip ├── RSD FLASHER DRIVERS.rar └── Riff BOX JTAG Drivers.rar ├── Fastboot Unbrick ├── Fastboot Unbrick.bat └── Fastboot Unbrick.sh ├── Flasher ├── MPRG8x10 (2).mbn └── MPRG8x10.mbn ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Partition Information └── Moto E Partition Table.xlsx ├── Prerequisite.md ├── Proofs ├── Method_7.jpg ├── Moto_E_Lineage_OS_7.1.2_(1).jpg ├── Moto_E_Lineage_OS_7.1.2_(2).jpg ├── Moto_E_TWRP.jpg ├── Moto_E_TWRP_boot.jpg ├── Moto_E_almost_unbricked_sucessfully!!.jpg ├── Moto_E_booting.jpg ├── Moto_E_charging.jpg ├── Moto_E_repair_recovery.jpg ├── Moto_E_unbricked_successfully!!.jpg └── readme.md ├── README.md ├── Recovery ├── Stock 4.4.4 recovery.img └── twrp-3.1.1-0-condor.img ├── Software ├── Android SDK Platform-Tools.md ├── HDD Raw Copy Tool.md ├── Mi Flash Tool.md ├── QPST Tool.md ├── RSDLite v6.2.4.rar └── WinRAR.md ├── Source Codes and Scripts ├── Moto Bootloader Extract │ └── Moto Extract Script.c ├── QBoot Utility │ ├── qboot.c │ ├── qboot.cfg.___Balloc_D2A.svg │ ├── qboot.cfg.___Bfree_D2A.svg │ ├── qboot.cfg.___do_global_dtors.svg │ ├── qboot.cfg.___freedtoa.svg │ ├── qboot.cfg.___gcc_register_frame.svg │ ├── qboot.cfg.___i2b_D2A.svg │ ├── qboot.cfg.___main.svg │ ├── qboot.cfg.___nrv_alloc_D2A.svg │ ├── qboot.cfg.___pformat_emit_radix_point.svg │ ├── qboot.cfg.___pformat_putc.svg │ ├── qboot.cfg.___rv_alloc_D2A.svg │ ├── qboot.cfg.___trailz_D2A.svg │ ├── qboot.cfg.__get_output_format.svg │ ├── qboot.cfg._blank_flash_device.svg │ ├── qboot.cfg._dtoa_lock.svg │ ├── qboot.cfg._dtoa_lock_cleanup.svg │ ├── qboot.cfg._dtoa_unlock.svg │ ├── qboot.cfg._extract_id.svg │ ├── qboot.cfg._getopt_long.svg │ ├── qboot.cfg._getopt_long_only.svg │ ├── qboot.cfg._getopt_parse.svg │ ├── qboot.cfg._list_devices.svg │ ├── qboot.cfg._list_devices_callback.svg │ ├── qboot.cfg._match_device.svg │ ├── qboot.cfg._match_device_with_port.svg │ ├── qboot.cfg._msleep.svg │ ├── qboot.cfg._on_event.svg │ ├── qboot.cfg._serial_enum_devices.svg │ ├── qboot.cfg._usage.svg │ ├── qboot.cfg._version.svg │ ├── qboot.cfg._wait_for_device.svg │ ├── qboot.cfg.function_4027f7.svg │ ├── qboot.cfg.function_402827.svg │ ├── qboot.cfg.function_406191.svg │ ├── qboot.cfg.function_4063fa.svg │ ├── qboot.cfg.main.svg │ ├── qboot.cg.svg │ └── qboot.dsm ├── README.md ├── boot_info ├── mkbootimg ├── repack_ramdisk ├── split_boot ├── umkbootimg ├── unpack └── unpack_ramdisk ├── Unbrick methods.md ├── _config.yml ├── flashfile.xml └── flashfile.xml ├── partition.xml └── partition.xml ├── patch0.xml ├── patch0 (2).xml ├── patch0 (3).xml └── patch0.xml ├── prog_emmc_firehose_8x10 ├── prog_emmc_firehose_8x10.mbn ├── programmer_8x10 (2).mbn └── programmer_8x10.mbn ├── rawprogram0.xml ├── Moto rawprogram0.xml ├── rawprogram0 (2).xml ├── rawprogram0 (3).xml └── rawprogram0.xml └── servicefile.xml └── servicefile.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/.gitignore -------------------------------------------------------------------------------- /Blank Flash/blank-flash.bat: -------------------------------------------------------------------------------- 1 | .\qboot.exe blank-flash 2 | pause 3 | -------------------------------------------------------------------------------- /Blank Flash/qboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Blank Flash/qboot -------------------------------------------------------------------------------- /Blank Flash/qboot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Blank Flash/qboot.dll -------------------------------------------------------------------------------- /Blank Flash/qboot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Blank Flash/qboot.exe -------------------------------------------------------------------------------- /Blank Flash/qboot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Blank Flash/qboot.ini -------------------------------------------------------------------------------- /Bootloader/motoboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Bootloader/motoboot.img -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @AravindVNair99 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Drivers/Motorola Device Manager.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Drivers/Motorola Device Manager.MD -------------------------------------------------------------------------------- /Drivers/QualcommDrv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Drivers/QualcommDrv.zip -------------------------------------------------------------------------------- /Drivers/RSD FLASHER DRIVERS.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Drivers/RSD FLASHER DRIVERS.rar -------------------------------------------------------------------------------- /Drivers/Riff BOX JTAG Drivers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Drivers/Riff BOX JTAG Drivers.rar -------------------------------------------------------------------------------- /Fastboot Unbrick/Fastboot Unbrick.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Fastboot Unbrick/Fastboot Unbrick.bat -------------------------------------------------------------------------------- /Fastboot Unbrick/Fastboot Unbrick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Fastboot Unbrick/Fastboot Unbrick.sh -------------------------------------------------------------------------------- /Flasher/MPRG8x10 (2).mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Flasher/MPRG8x10 (2).mbn -------------------------------------------------------------------------------- /Flasher/MPRG8x10.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Flasher/MPRG8x10.mbn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Partition Information/Moto E Partition Table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Partition Information/Moto E Partition Table.xlsx -------------------------------------------------------------------------------- /Prerequisite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Prerequisite.md -------------------------------------------------------------------------------- /Proofs/Method_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Method_7.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_Lineage_OS_7.1.2_(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_Lineage_OS_7.1.2_(1).jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_Lineage_OS_7.1.2_(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_Lineage_OS_7.1.2_(2).jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_TWRP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_TWRP.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_TWRP_boot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_TWRP_boot.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_almost_unbricked_sucessfully!!.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_almost_unbricked_sucessfully!!.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_booting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_booting.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_charging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_charging.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_repair_recovery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_repair_recovery.jpg -------------------------------------------------------------------------------- /Proofs/Moto_E_unbricked_successfully!!.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Proofs/Moto_E_unbricked_successfully!!.jpg -------------------------------------------------------------------------------- /Proofs/readme.md: -------------------------------------------------------------------------------- 1 | # :book: Proof of concept 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/README.md -------------------------------------------------------------------------------- /Recovery/Stock 4.4.4 recovery.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Recovery/Stock 4.4.4 recovery.img -------------------------------------------------------------------------------- /Recovery/twrp-3.1.1-0-condor.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Recovery/twrp-3.1.1-0-condor.img -------------------------------------------------------------------------------- /Software/Android SDK Platform-Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/Android SDK Platform-Tools.md -------------------------------------------------------------------------------- /Software/HDD Raw Copy Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/HDD Raw Copy Tool.md -------------------------------------------------------------------------------- /Software/Mi Flash Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/Mi Flash Tool.md -------------------------------------------------------------------------------- /Software/QPST Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/QPST Tool.md -------------------------------------------------------------------------------- /Software/RSDLite v6.2.4.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/RSDLite v6.2.4.rar -------------------------------------------------------------------------------- /Software/WinRAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Software/WinRAR.md -------------------------------------------------------------------------------- /Source Codes and Scripts/Moto Bootloader Extract/Moto Extract Script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/Moto Bootloader Extract/Moto Extract Script.c -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.c -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___Balloc_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___Balloc_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___Bfree_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___Bfree_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___do_global_dtors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___do_global_dtors.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___freedtoa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___freedtoa.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___gcc_register_frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___gcc_register_frame.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___i2b_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___i2b_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___main.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___nrv_alloc_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___nrv_alloc_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___pformat_emit_radix_point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___pformat_emit_radix_point.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___pformat_putc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___pformat_putc.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___rv_alloc_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___rv_alloc_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.___trailz_D2A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.___trailz_D2A.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.__get_output_format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.__get_output_format.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._blank_flash_device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._blank_flash_device.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_lock.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_lock_cleanup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_lock_cleanup.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._dtoa_unlock.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._extract_id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._extract_id.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_long.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_long_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_long_only.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_parse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._getopt_parse.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._list_devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._list_devices.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._list_devices_callback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._list_devices_callback.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._match_device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._match_device.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._match_device_with_port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._match_device_with_port.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._msleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._msleep.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._on_event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._on_event.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._serial_enum_devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._serial_enum_devices.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._usage.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._version.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._version.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg._wait_for_device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg._wait_for_device.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.function_4027f7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.function_4027f7.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.function_402827.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.function_402827.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.function_406191.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.function_406191.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.function_4063fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.function_4063fa.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cfg.main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cfg.main.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.cg.svg -------------------------------------------------------------------------------- /Source Codes and Scripts/QBoot Utility/qboot.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/QBoot Utility/qboot.dsm -------------------------------------------------------------------------------- /Source Codes and Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/README.md -------------------------------------------------------------------------------- /Source Codes and Scripts/boot_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/boot_info -------------------------------------------------------------------------------- /Source Codes and Scripts/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/mkbootimg -------------------------------------------------------------------------------- /Source Codes and Scripts/repack_ramdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/repack_ramdisk -------------------------------------------------------------------------------- /Source Codes and Scripts/split_boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/split_boot -------------------------------------------------------------------------------- /Source Codes and Scripts/umkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/umkbootimg -------------------------------------------------------------------------------- /Source Codes and Scripts/unpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/unpack -------------------------------------------------------------------------------- /Source Codes and Scripts/unpack_ramdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Source Codes and Scripts/unpack_ramdisk -------------------------------------------------------------------------------- /Unbrick methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/Unbrick methods.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/_config.yml -------------------------------------------------------------------------------- /flashfile.xml/flashfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/flashfile.xml/flashfile.xml -------------------------------------------------------------------------------- /partition.xml/partition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/partition.xml/partition.xml -------------------------------------------------------------------------------- /patch0.xml/patch0 (2).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/patch0.xml/patch0 (2).xml -------------------------------------------------------------------------------- /patch0.xml/patch0 (3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/patch0.xml/patch0 (3).xml -------------------------------------------------------------------------------- /patch0.xml/patch0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/patch0.xml/patch0.xml -------------------------------------------------------------------------------- /prog_emmc_firehose_8x10/prog_emmc_firehose_8x10.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/prog_emmc_firehose_8x10/prog_emmc_firehose_8x10.mbn -------------------------------------------------------------------------------- /prog_emmc_firehose_8x10/programmer_8x10 (2).mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/prog_emmc_firehose_8x10/programmer_8x10 (2).mbn -------------------------------------------------------------------------------- /prog_emmc_firehose_8x10/programmer_8x10.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/prog_emmc_firehose_8x10/programmer_8x10.mbn -------------------------------------------------------------------------------- /rawprogram0.xml/Moto rawprogram0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/rawprogram0.xml/Moto rawprogram0.xml -------------------------------------------------------------------------------- /rawprogram0.xml/rawprogram0 (2).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/rawprogram0.xml/rawprogram0 (2).xml -------------------------------------------------------------------------------- /rawprogram0.xml/rawprogram0 (3).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/rawprogram0.xml/rawprogram0 (3).xml -------------------------------------------------------------------------------- /rawprogram0.xml/rawprogram0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/rawprogram0.xml/rawprogram0.xml -------------------------------------------------------------------------------- /servicefile.xml/servicefile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aravindvnair99/Motorola-Moto-E-condor-unbrick/HEAD/servicefile.xml/servicefile.xml --------------------------------------------------------------------------------