IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> android fastboot常见命令 -> 正文阅读

[移动开发]android fastboot常见命令

关于fasboot锁定/解锁引导加载程序 ,请参考google source中的说明

Flashing
Flash all partitions from an update.zip package.

fastboot update ZIP

Flash all partitions from $ANDROID_PRODUCT_OUT. On A/B devices, flashed slot is set as active. Secondary images may be flashed to inactive slot.

fastboot flashall

Flash given partition, using the image from $ANDROID_PRODUCT_OUT if no filename is given.

fastboot flash PARTITION [FILENAME]

Basics
List devices in bootloader (-l: with device paths).

fastboot devices [-l]

Display given bootloader variable.

fastboot getvar [NAME]
fastboot getvar version
fastboot getvar version-bootloader
fastboot getvar version-baseband
fastboot getvar version-cpld
fastboot getvar version-microp
fastboot getvar version-main
fastboot getvar version-misc
fastboot getvar serialno
fastboot getvar imei
fastboot getvar meid
fastboot getvar product
fastboot getvar platform
fastboot getvar modelid
fastboot getvar cidnum
fastboot getvar battery-status
fastboot getvar battery-voltage
fastboot getvar partition-layout
fastboot getvar security
fastboot getvar build-mode
fastboot getvar boot-mode
fastboot getvar gencheckpt

Reboot device.

fastboot reboot [bootloader]

Locking/unlocking
Lock/unlock partitions for flashing

fastboot flashing lock|unlock

Lock/unlock ‘critical’ bootloader partitions.

fastboot flashing lock_critical|unlock_critical

Check whether unlocking is allowed (1) or not(0).

fastboot flashing get_unlock_ability

Advanced
Erase a flash partition.

fastboot erase PARTITION

Format a flash partition.

fastboot format[:FS_TYPE[:SIZE]] PARTITION

Set the active slot.

fastboot set_active SLOT

Execute OEM-specific command.

fastboot oem [COMMAND...]
fastboot oem get-bootinfo
fastboot oem writecid
fastboot oem writeimei
fastboot oem get_identifier_token
fastboot oem unlock-go
fastboot oem unlock
fastboot oem lock
fastboot oem device-info preflash
fastboot oem enable-charger-screen
fastboot oem disable-charger-screen
fastboot oem off-mode-charge
fastboot oem select-display-panel
fastboot oem bootlog
fastboot oem getvar
fastboot oem mmcinfo
fastboot oem info
fastboot oem securewipe

Wipe or disable a GSI installation (fastbootd only).

fastboot gsi wipe|disable

Wipe the super partition. This will reset it to contain an empty set of default dynamic partitions.

fastboot wipe-super [SUPER_EMPTY]

On devices that support snapshot-based updates, cancel an in-progress update. This may make the device unbootable until it is reflashed.

fastboot snapshot-update cancel

On devices that support snapshot-based updates, finish an in-progress update if it is in the “merging” phase.

fastboot snapshot-update merge

Boot image
Download and boot kernel from RAM.

fastboot boot KERNEL [RAMDISK [SECOND]]

Create boot image and flash it.

fastboot flash:raw PARTITION KERNEL [RAMDISK [SECOND]]

Specify path to DTB for boot image header version 2.

fastboot --dtb DTB

Override kernel command line.

fastboot --cmdline CMDLINE

Set kernel base address (default: 0x10000000).

fastboot --base ADDRESS

Set kernel offset (default: 0x00008000).

fastboot --kernel-offset

Set ramdisk offset (default: 0x01000000).

fastboot --ramdisk-offset

Set tags offset (default: 0x00000100).

fastboot --tags-offset

Set dtb offset (default: 0x01100000).

fastboot --dtb-offset

Set flash page size (default: 2048).

fastboot --page-size BYTES

Set boot image header version.

fastboot --header-version VERSION

Set boot image OS version (default: 0.0.0).

fastboot --os-version MAJOR[.MINOR[.PATCH]]

Set boot image OS security patch level.

fastboot --os-patch-level YYYY-MM-DD

Android Things
Sends given file to stage for the next command.

fastboot stage IN_FILE

Writes data staged by the last command to a file.

fastboot get_staged OUT_FILE

Options
Wipe userdata.

fastboot -w

Specify a USB device.

fastboot -s SERIAL

Specify a network device.

fastboot -s tcp|udp:HOST[:PORT]

Break into sparse files no larger than SIZE.

fastboot -S SIZE[K|M|G]

Force a flash operation that may be unsafe.

fastboot --force

Use SLOT; ‘all’ for both slots, ‘other’ for non-current slot (default: current active slot).
fastboot --slot SLOT

Sets the active slot before rebooting.

fastboot --set-active[=SLOT]

Don’t flash secondary slots in flashall/update.

fastboot --skip-secondary

Don’t reboot device after flashing.

fastboot --skip-reboot

Sets disable-verity when flashing vbmeta.

fastboot --disable-verity

Sets disable-verification when flashing vbmeta.

fastboot --disable-verification

Enable file-based encryption, wiping userdata.

fastboot --wipe-and-use-fbe

Don’t buffer input or output.

fastboot --unbuffered

Verbose output.

fastboot --verbose, -v

Display version.

fastboot --version

Show this message.

fastboot --help, -h
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-15 11:54:32  更:2021-10-15 11:56:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:06:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码