2017-02-11 95 views
-2

我有一个酷派笔记3,我试图解锁fastboot(bootloader)。
除了一件我无法安装恢复或通过Sp Flash工具刷我的设备之外,我的笔记本电脑上的所有设置都完全安装。
我在我的笔记本电脑上安装了Ubuntu 16.04 LTS。令人惊讶的是,我可以使用adb并通过有线或无线方式连接手机,同时通过Android Studio开发和测试我的应用程序。尽管我没有使用Unity Remote进行Unity 5.x版本的开发和测试。
我的意思是我可以将手机连接到我的笔记本电脑,并通过WiFi /电线测试应用程序,因为我和它的工作非常完美,我还可以通过terminal使用adb命令。唯一的问题是我不能使用fastboot。其实在terminal运行fastboot生产的正规输出,应该即解锁fastpad fastpad注3

$ 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手机是:
酷派注3
运行棉花糖股票ROM
ROM是未经修改和股票
手机是不是植根。
还没有自定义软件,如恢复

任何人可以帮助我与运行FASTBOOT我的酷派注3.

+0

Stackoverflow适用于Android编程,而不是生根。我认为你在XDA开发人员方面会有更好的运气 –

+0

无论如何,除非你在**快速启动**,否则fastboot将不起作用。 'adb reboot fastboot' –

+0

ofcourse我处于fastboot模式。我也从来没有问过生根。我知道如何根植它。我问的是Fastboot。感谢任何帮助表示赞赏。 – Shanu

回答

0

我尝试了很多东西,最后我想我已经找到下面这个简单的解决方法这个网站在这里列出的方法:
http://abhisek.github.io/coolpad_note3/porting/2015/11/05/unlocking-the-bootloader.html

我做什么我的解决方案基础上,网站上的说明

首先I b正常地接通了我的电话。
它连接到你的笔记本电脑或PC(如果你还在使用一个)
启动终端(在Ubuntu)或最小亚行的窗口(对不起,我不知道适用于MacOS)

adb reboot bootloader

当我启动进入bootloader我进入

fastboot -i 0x1ebf devices到终端,我可以顺利看到下面的输出:

devicefastbootidhere fastboot

其中devicefastbootidhere是Android设备的FASTBOOT ID

然后我试着用

$ fastboot -i 0x1ebf oem unlock

解锁OEM和被击落与下面的输出:

... 
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。我接下来做的事情对我来说是幸运的。我希望其他Coolpad用户也能正确使用它。

我用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遵循对酷派注3快速恢复,但我并没有跟着他们。我通过fastboot实现了闪回恢复。但是对于每个fastboot命令我都必须使用

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

Upvote如果它为你工作!