繁体   English   中英

解锁酷派 Note 3 的 fastboot

[英]Unlocking fastboot of Coolpad Note 3

我有一个 Coolpad Note 3,我正在尝试解锁 fastboot(引导加载程序)。
一切都在我的笔记本电脑上完美设置,除了我无法通过 Sp Flash 工具安装恢复或刷新我的设备的一件事。
我的笔记本电脑上有 Ubuntu 16.04 LTS。 令人惊讶的是,当我通过 Android Studio 开发和测试我的应用程序时,我可以使用 adb 并以有线或无线方式连接我的手机。 尽管我对 Unity 远程通过 Unity 5.x 版本进行开发和测试没有运气。
我的意思是我可以将我的手机连接到我的笔记本电脑并通过 WiFi/Wire 测试应用程序,因为我和它工作得很好,我也可以通过terminal使用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 我没有运气。

我的安卓手机是:
酷派Note 3
运行棉花糖股票 ROM
Rom 未修改和库存
手机没有root。
也没有像恢复这样的自定义软件

谁能帮我用酷派 Note 3 运行 fastboot。

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

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

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

输入adb reboot bootloader

一旦我启动到引导加载程序,我就进入

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

devicefastbootidhere fastboot

其中devicefastbootidhere是您的 android 设备的 fastboot id

然后我尝试解锁 oem

$ fastboot -i 0x1ebf oem unlock

并被以下输出击落:

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



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

对我有用的是我的 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 命令

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM