summaryrefslogtreecommitdiff
path: root/doc/android
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2021-02-26 15:11:08 -0500
committerTom Rini <[email protected]>2021-02-26 15:11:08 -0500
commit08cca188c120b8337600091c94dc0e211cd03e10 (patch)
treebb6980e98ba2b14919b38619994ffa6f65d839b5 /doc/android
parentb839fc9d47bbfc4ab4f0817a03e0e0e25b93e925 (diff)
parent0a7e5e5f103867789328067f87e34b25b26fc3b0 (diff)
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-usb
- fastboot updates / fixes
Diffstat (limited to 'doc/android')
-rw-r--r--doc/android/fastboot-protocol.rst5
-rw-r--r--doc/android/fastboot.rst6
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/android/fastboot-protocol.rst b/doc/android/fastboot-protocol.rst
index e723659e49c..e8cbd7f24ea 100644
--- a/doc/android/fastboot-protocol.rst
+++ b/doc/android/fastboot-protocol.rst
@@ -144,6 +144,11 @@ Command Reference
"powerdown" Power off the device.
+ "ucmd" execute any bootloader command and wait until it
+ finishs.
+
+ "acmd" execute any bootloader command, do not wait.
+
Client Variables
----------------
diff --git a/doc/android/fastboot.rst b/doc/android/fastboot.rst
index 16b11399b30..7611f07038e 100644
--- a/doc/android/fastboot.rst
+++ b/doc/android/fastboot.rst
@@ -19,6 +19,8 @@ The current implementation supports the following standard commands:
- ``reboot``
- ``reboot-bootloader``
- ``set_active`` (only a stub implementation which always succeeds)
+- ``ucmd`` (if enabled)
+- ``acmd`` (if enabled)
The following OEM commands are supported (if enabled):
@@ -154,6 +156,10 @@ The device index starts from ``a`` and refers to the interface (e.g. USB
controller, SD/MMC controller) or disk index. The partition index starts
from ``1`` and describes the partition number on the particular device.
+Alternatively, partition types may be specified using :ref:`U-Boot's partition
+syntax <partitions>`. This allows specifying partitions like ``0.1``,
+``0#boot``, or ``:3``. The interface is always ``mmc``.
+
Writing Partition Table
-----------------------