diff options
author | Neha Malcom Francis | 2024-05-29 11:35:59 +0530 |
---|---|---|
committer | Tom Rini | 2024-06-13 16:29:20 -0600 |
commit | 4c3a9113d9c94217b0dba8af58c18f2113c3ccb0 (patch) | |
tree | 2397cbb2c6dad882f37f668ddaf39abb344aed9a /include/env | |
parent | 939f17c8a976ba9e1ea9f5f24c3d108c7175dff5 (diff) |
env: ti: k3_dfu: Drup mmcpart for rootfs
According to [0], raw access to mmc should not have mmcpart in the
entry. This was fixed in k3_dfu_combined.env but k3_dfu.env had been
overlooked.
[0] doc/usage/dfu.rst
Fixes: 53b406369e9d ("DFU: Check the number of arguments and argument string strictly")
Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'include/env')
-rw-r--r-- | include/env/ti/k3_dfu.env | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/env/ti/k3_dfu.env b/include/env/ti/k3_dfu.env index 201529636cc..b42cf21d986 100644 --- a/include/env/ti/k3_dfu.env +++ b/include/env/ti/k3_dfu.env @@ -9,7 +9,7 @@ dfu_alt_info_mmc= dfu_alt_info_emmc= rawemmc raw 0 0x800000 mmcpart 1; - rootfs part 0 1 mmcpart 0; + rootfs part 0 1; tiboot3.bin.raw raw 0x0 0x400 mmcpart 1; tispl.bin.raw raw 0x400 0x1000 mmcpart 1; u-boot.img.raw raw 0x1400 0x2000 mmcpart 1; |