summaryrefslogtreecommitdiff
path: root/doc/board/gateworks/imx8mm_venice.rst
diff options
context:
space:
mode:
authorTim Harvey <tharvey@gateworks.com>2023-05-03 03:05:57 +0300
committerStefano Babic <sbabic@denx.de>2023-07-11 15:40:03 +0300
commit79e315761c5c3dbbfe457edfe421932f40d88520 (patch)
tree9643557e0f0cf90d505207741cada9a1fb89b325 /doc/board/gateworks/imx8mm_venice.rst
parent13897ff6d9f341ff70f7e1765562b9ae7a66e521 (diff)
downloadu-boot-79e315761c5c3dbbfe457edfe421932f40d88520.tar.xz
board: gateworks: venice: update board doc to show other emmc parts
Update the venice board documentation to show how to install to the various eMMC hardware partitions available as the same binary firmware can be placed in either user/boot0/boot1 without build-time config changes. Note that the boot offsets differ depending on the SoC and the eMMC hardware partition. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'doc/board/gateworks/imx8mm_venice.rst')
-rw-r--r--doc/board/gateworks/imx8mm_venice.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/board/gateworks/imx8mm_venice.rst b/doc/board/gateworks/imx8mm_venice.rst
index f1e7e49944..ea78dfd7ae 100644
--- a/doc/board/gateworks/imx8mm_venice.rst
+++ b/doc/board/gateworks/imx8mm_venice.rst
@@ -47,4 +47,6 @@ Update eMMC
=> tftpboot $loadaddr flash.bin
=> setexpr blkcnt $filesize + 0x1ff && setexpr blkcnt $blkcnt / 0x200
- => mmc dev 2 && mmc write $loadaddr 0x42 $blkcnt
+ => mmc dev 2 0 && mmc write $loadaddr 0x42 $blkcnt # emmc user hw part
+ => mmc dev 2 1 && mmc write $loadaddr 0x42 $blkcnt # or emmc boot0 hw part
+ => mmc dev 2 2 && mmc write $loadaddr 0x42 $blkcnt # or emmc boot1 hw part