解锁酷派Note 3的fastboot

Unlocking fastboot of Coolpad Note 3

我有一台酷派Note 3,我正在尝试解锁fastboot (bootloader)。
我的笔记本电脑上的一切都已完美设置,除了一件事,我无法安装恢复或通过 Sp Flash 工具刷新我的设备。
我的笔记本电脑上有 Ubuntu 16.04 LTS。令人惊讶的是,当我通过 Android Studio 开发和测试我的应用程序时,我可以使用 adb 并以有线或无线方式连接我的 phone。虽然我没有幸运地使用 Unity remote 通过 Unity 5.x 版本进行开发和测试。
我的意思是我可以将我的 phone 连接到我的笔记本电脑并通过 WiFi/Wire 测试应用程序,因为我和它工作完美,我可以通过 [=12] 使用 adb 命令=] 还有。唯一的问题是我不能使用 fastboot。实际上 terminal 中的 运行 fastboot 会产生它应该的常规输出,即

$ fastboot


usage: fastboot [ <option> ] <command>

commands:

update <filename>                        reflash device from update.zip

flashall                                 flash boot, system, vendor and if 
found,

                                       recovery

flash <partition> [ <filename> ]         write a file to a flash partition

erase <partition>                        erase a flash partition

format[:[<fs type>][:[<size>]] <partition> format a flash partition.
                                       Can override the fs type and/or
                                       size the bootloader reports.

 getvar <variable>                        display a bootloader variable

boot <kernel> [ <ramdisk> [ <second> ] ] download and boot kernel

flash:raw boot <kernel> [ <ramdisk> [ <second> ] ] create bootimage and 

                                           flash it

devices                                  list all connected devices

continue                                 continue with autoboot

reboot                                   reboot device normally

reboot-bootloader                        reboot device into bootloader

help                                     show this help message



options:

-w                                       erase userdata and cache (and 
format

                                       if supported by partition type)

-u                                       do not first erase partition 
before

                                       formatting



-s <specific device>                     specify device serial number
                                       or path to device port

-l                                       with "devices", lists device 
paths
-p <product>                             specify product name
-c <cmdline>                             override kernel commandline
-i <vendor id>                           specify a custom USB vendor id
-b <base_addr>                           specify a custom kernel base                   
address.
                                       default: 0x10000000

-n <page size>                           specify the nand page size.
                                       default: 2048


-S <size>[K|M|G]                         automatically sparse files 
greater

                                       than size.  0 to disable

terminal 中使用 fastboot devices 没有输出。
sudo fastboot devices 的结果相同,我什至尝试了 $(which fastboot) devicessudo $(which fastboot) devices。我这边运气不好。

我的 Android phone 是:
酷派Note 3
运行 棉花糖库存 ROM
ROM 未修改且库存
Phone 没有 root。
也没有像恢复这样的自定义软件

任何人都可以帮助我 运行 fastboot 我的酷派 Note 3。

我按照此网站上列出的此方法找到了一个简单的解决方法:
http://abhisek.github.io/coolpad_note3/porting/2015/11/05/unlocking-the-bootloader.html

我根据网站说明对我的解决方案做了什么

首先我正常启动 phone。
将它连接到您的笔记本电脑或个人电脑(如果您仍在使用)
启动终端(在 Ubuntu 上)或 windows 的最小 ADB(抱歉,我不知道 MacOS)

输入adb reboot bootloader

我一进入引导加载程序就输入

fastboot -i 0x1ebf devices 进入终端,我可以成功看到以下输出:

devicefastbootidhere fastboot

其中 devicefastbootidhere 是您的 android 设备的快速启动 ID

然后我尝试解锁 oem

$ fastboot -i 0x1ebf oem unlock

并被击落并输出以下内容:

...
FAILED (remote: unknown command)
finished. total time: 0.002s



尽管失败了,但我努力不失去任何希望:
(该网站说,在 Coolpad Note 3 之类的设备上,您必须启用从开发人员设置中解锁 oem 的选项……更多信息请参见上面的 link)

对我有用的是我的 Coolpad Note 3 是 运行 Marshmallow 和 CoolUI 6.0。我的设备的旧版本,即我的设备 Coolpad Note 3 最初作为库存固件随 Lollipop 一起提供。我手动刷新了新的 Marshmallow Stock ROM。我接下来所做的对我来说是幸运的。我希望其他酷派用户也能做对。

我用了fastboot -i 0x1ebf flash recovery /path/to/recovery_twrp.img

我收到了以下输出;

target reported max download size of 134217728 bytes
sending 'recovery' (16384 KB)...
OKAY [  1.683s]
writing 'recovery'...
finished. total time: 1.686s

在上面的网站上,作者提到了通过 fastboot 在 Coolpad Note 3 上进行闪存恢复要遵循的其他步骤,但我不必遵循它们。我实际上成功地通过 fastboot 进行了闪回恢复。但是对于每个快速启动命令,我都必须使用

fastboot -i 0x1ebf <command here> <options>这个方法。