fastboot

01-步骤整理-华为海思Hikey970开发板的AOSP编译烧写

只谈情不闲聊 提交于 2019-12-02 01:55:39
最近结合第三方厂家与官方提供的编译文档,实践整理了Hikey970单板编译与烧写Google原生AOSP(Android Open Source Project)系统的步骤。 单板参数:6GB LPDDR4 64GB UFS 具体流程如下。 一、Bootloader 1、sudo apt-get install uuid-dev build-essential 2、mkdir bootloader cd bootloader 3、git clone https://github.com/96boards-hikey/tools-images-hikey970.git git clone https://github.com/96boards-hikey/OpenPlatformPkg.git -b hikey970_v1.0 git clone https://github.com/96boards-hikey/arm-trusted-firmware.git -b hikey970_v1.0 git clone https://github.com/96boards-hikey/l-loader.git -b hikey970_v1.0 git clone https://github.com/96boards-hikey/edk2.git -b hikey970_v1.0

ADB stopping at <waiting for devices>

感情迁移 提交于 2019-12-01 23:54:33
I was trying to install some custom recovery and ROM on to my phone when I got to this situation. (I have my windows update turned off) ADB or fastboot shows <waiting for devices> I tried and saw few solutions. I'm writing a detailed solution to this. this was how I solved it. if you have more suggestions you can answer below. the only reason for this is that your PC is not recognizing Phone.which is a driver problem. You have to understand a few things before starting with the solution. you may know this too. when you are in your recovery adb gets into something like recovery mode(just

【转】Android系统中Fastboot和Recovery所扮演的角色。

青春壹個敷衍的年華 提交于 2019-11-30 01:35:52
Android 刷机过程中 Fastboot 和 Recovery 的作用是什么? 自己在知乎的一篇回答,,现在翻出来放到博客,希望可以解答更多人的疑惑,抑或有什么理解上的错误,也望网友指出~ 今天恰好和同事讨论了下Fastboot。在我看来提问者首先应该了解Fastboot和Recovery在安卓系统中的扮演什么角色,我们再去讨论它们在刷机过程中的作用。 首先来说下Fastboot的功能吧,Fastboot一般由boot和loader两个模块组成,boot负责安卓设备上电后初始化一些最基本的参数,类似CPU时钟,寄存器初始化。而loader负责去引导系统,例如从Emmc上读多大空间到内存,然后CPU开始从内存某地址开始执行,其实安卓系统抑或Recovery模块也就是在这一步被加载的。 而Recovery实际上是一个mini的系统,对Fastboot中的loader而言,安卓系统和Recovery是同级别的,开机的时候,loader可以去加载他们中的任何一个,你可以理解Recovery是一个只具有恢复出厂和升级功能的系统,注意Fastboot我们一般不认为它是一个系统。但是它具有一些功能模块类似tftp等。 所以Android刷机的时候,使用Fastboot一般都是线刷,也就是PC上的刷机软件通过和Fastboot通讯,将PC上的刷机包通过Fastboot的桥梁作用

Android Fastboot devices not returning device

风格不统一 提交于 2019-11-28 22:09:51
问题 At the moment I would like to reinstall Android on my device(custom hardware device). I got the image files after building. But when I enter fastboot devices nothing returns. adb devices is working. It return my device. fastboot flashall -w is also not working. I returns <waiting for devices> and stays like that until I exit. So the 70-android.rules.d file is right. I have also set ANDROID_PRODUCT_OUT. But someone knows why fastboot does not see my device, but adb does? Restarting udev or adb

Having issues seeing GLASS in Fastboot [closed]

我们两清 提交于 2019-11-28 11:42:49
I can see my GLASS id in adb and adb reboot-bootloader seems to work. I can not see my device id in fastboot however and fastboot oem unlock hangs on "waiting for device". Pressing the camera button does reboot the device. Has anyone else had / seen this issue and what have you done to remedy? I am currently on XE7 with debugging on. I have side-loaded apk's before with no issue via adb. I would like to know of any possible solutions to be able to see my GLASS in fastboot. My Solution- I had issues on Win 8 so I swapped over to my OS X install, unplugged all usb peripherals and then ran "./adb

刷机,twrp,安装xposed

最后都变了- 提交于 2019-11-27 16:52:43
首先明白几个名词: recovery模式,类似于pc端的PE系统,每个手机都有自带的rec,但不好用,最好自己刷一个,现在市面最好用的是twrp fastboot模式,比recovery更底层,进入fastboot可以刷第三方的rec,比如twrp,然后进入rec刷其他rom包 开机状态进入fastboot:adb reboot bootloader,有些手机(小米)官方锁了bootloader(bl)需要申请解锁 刷入rec:fastboot flash recovery recovery.img 进入rec:adb reboot recovery,fastboot boot recovery.img 查看连接状态:adb devices,fastboot devices xposed框架:root之后下载xposed installers,然后下载相对应的模块 输入三方rec之后,从rec刷入xposed 来源: https://www.cnblogs.com/wa007/p/11370865.html

Android9.0抓取qxdm log

孤者浪人 提交于 2019-11-27 07:22:26
9.0平台不能直接使用暗码抓取qxdm log,使其root就可以了 1.进入fastboot模式 adb reboot bootloader 2.使能unlock(这步会使手机恢复出厂设置) fastboot oem unlock-flash(使能unlock) 按音量下键使其unlock 再按power键确认 3.再次进入fastboot模式, 使能root fastboot oem enable-rooting 4.重启手机 adb root adb shell setenforce 0 来源: https://blog.csdn.net/qq_44963514/article/details/99546980

FastBoot 刷机使用方法

泄露秘密 提交于 2019-11-26 16:52:15
极力推荐Android 开发大总结文章:欢迎收藏 程序员Android 力荐 ,Android 开发者需要的必备技能 本篇文章主要介绍 Android 开发中的部分知识点,通过阅读本篇文章,您将收获以下内容: 一、Fastboot 简介 二、Fastboot 刷机准备 三、Fastboot 刷机命令 四、其他刷机工具 一、Fastboot 简介 在安卓手机中 Fastboot 是一种比 recovery 更底层的刷机模式(俗称引导模式)。就是使用 USB 数据线连接手机的一种刷机模式。相对于 Recovery 、Fota等卡刷来说,线刷更可靠,安全。 二、Fastboot 刷机准备 解锁 BootLoader 使用 Fastboot 刷机必须先解锁 BootLoader ,否则无法刷机。解锁 BootLoader 的方法是在开发者模式中开起 OEM unlocking 开关。如开发者模式隐藏,请进入 Settings -- System -- About Phone --多次点击 build number 即可打开隐藏的开发者模式。 三、Fastboot 刷机命令 1.进入Fastboot 模式 一般手机常用 Power 跟 音量+ 进入 fastboot mode 首先解锁设备 开发者模式打开 oem 开关后,连接 USB ,对设备进行解锁 解锁命令如下: fastboot

作为测试人员,不能不懂的adb命令和操作

醉酒当歌 提交于 2019-11-26 14:20:21
刚从web转到app测试,很多知识需要补充,记录一下 1.概念 其实我们口中所讲的adb是个泛指,这其中有两个工具——Fastboot和ADB fastboot 快速启动,usb链接数据线的一种刷机方式 ADB 调试安卓或者按照app的工具,是安卓sdk中的一种工具,用此工具可以调试安卓模拟器或者真机 ps:冷知识 一般Android设备连接WinXP是无需安装驱动的 2.adb的功能 运行设备的shell(命令行) 管理模拟器或设备的 端口映射 计算机和设备之间上传/下载文件 将本地apk软件安装至模拟器或android设备 ADB是一个客户端-服务器端 程序, 其中客户端是你用来操作的电脑, 服务器端是android设备。而ADB驱动就是电脑与android设备的通信的客户端驱动程序。 所有能对手机的操作都能用adb实现。也就是说如果你玩的6,你就是触摸屏完全坏了,显示屏完全坏了,就只是给你一个主板,你照样能完成你要做的动作。当然在一般场景不推荐这样做,效率优先嘛。 ps:下载adb工具的时候,很多包都把这两个工具打包在一起了 3.使用方法 a.电脑下载并安装好adb工具 安卓开发者网站 https://developer.android.google.cn/studio/releases/platform-tools?hl=en 下载对应的adb安卓包 解压后,配置环境变量

set up device for development (???????????? no permissions)

蹲街弑〆低调 提交于 2019-11-25 23:43:31
问题 I am using a Samsung galaxy nexus phone ( Android 4.0 platform) . I am developing Android app on Ubuntu linux OS. I would like to run my application directly on the Samsung handset device, so I performed the following setup steps: in my project AndroidManifest.xml file, added android:debuggable=\"true\" to the <application> element On the device, in the Settings > Security enabled Unknown sources On the device, in the Settings > Developer options enabled USB debugging On my computer, created