我有一个Coolpad Note 3,我正在尝试解锁fastboot(bootloader)。
除了一件我无法通过Sp Flash工具安装恢复或闪存设备的东西外,我的笔记本电脑上的设置完美无缺。
我的笔记本电脑上有Ubuntu 16.04 LTS。令人惊讶的是,当我通过Android Studio开发和测试我的应用程序时,我可以使用adb并有线或无线连接我的手机。虽然我没有通过Unity远程开发和测试Unity 5.x版本的运气。我的意思是我可以将手机连接到笔记本电脑并通过WiFi /线路测试应用程序,因为我和它工作正常,我也可以通过adb
使用terminal
命令。唯一的问题是我无法使用fastboot
。实际上在fastboot
中运行terminal
会产生常规输出,即它。
$ 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
在fastboot devices
中使用terminal
没有输出。
sudo fastboot devices
的结果相同,我甚至尝试了$(which fastboot) devices
和sudo $(which fastboot) devices
。我没有运气。
我的Android手机是:
酷派笔记3
运行棉花糖库存ROM
Rom未经修改且存货
电话没有扎根。
也没有像恢复的定制软件
有人帮我用Coolpad Note 3运行fastboot。
答案 0 :(得分:0)
我尝试了很多东西,最后我想我已经找到了一个简单的解决方法,遵循这个网站上列出的方法:
http://abhisek.github.io/coolpad_note3/porting/2015/11/05/unlocking-the-bootloader.html
我根据网站说明为我的解决方案做了什么
首先,我正常启动手机
将它连接到您的笔记本电脑或PC(如果您还在使用一台)
启动一个终端(在Ubuntu上)或最小的ADB用于Windows(抱歉我不知道MacOS)
输入adb reboot bootloader
一旦我启动进入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一起提供的。我手动闪过新的棉花糖库存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>
这种方法。
Upvote是否适合你!