diff options
| author | Tom Rini <[email protected]> | 2020-09-03 09:48:28 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-09-03 09:48:28 -0400 |
| commit | 9bfb567e5f1bfe7de8eb41f8c6d00f49d2b9a426 (patch) | |
| tree | 50aa5bfd07887062e0d6808158a02434c9a85116 /doc | |
| parent | 7f4d3c044504668fcbc547af52e0c2c4fd715d27 (diff) | |
| parent | 293a6dfeb96129abebf1ad927fa9aedf03a66d34 (diff) | |
Merge branch 'master' of git://git.denx.de/u-boot-usb
- Mostly DFU fixes and r8152 fixes
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/android/fastboot.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/android/fastboot.rst b/doc/android/fastboot.rst index de3f6c37d7d..2877c3cbaaa 100644 --- a/doc/android/fastboot.rst +++ b/doc/android/fastboot.rst @@ -85,6 +85,25 @@ for example:: fastboot_partition_alias_boot=LNX +Raw partition descriptors +^^^^^^^^^^^^^^^^^^^^^^^^^ + +In cases where no partition table is present, a raw partition descriptor can be +defined, specifying the offset, size, and optionally the MMC hardware partition +number for a given partition name. + +This is useful when using fastboot to flash files (e.g. SPL or U-Boot) to a +specific offset in the eMMC boot partition, without having to update the entire +boot partition. + +To define a raw partition descriptor, add an environment variable similar to:: + + fastboot_raw_partition_<raw partition name>=<offset> <size> [mmcpart <num>] + +for example:: + + fastboot_raw_partition_boot=0x100 0x1f00 mmcpart 1 + Variable overrides ^^^^^^^^^^^^^^^^^^ |
