Skip to content

Commit

Permalink
labs: yocto: stm32: lab1: fix device in example
Browse files Browse the repository at this point in the history
We tell to umount mmcblk0p* so we should instruct to flash on mmcblk0.

Signed-off-by: Antonin Godard <[email protected]>
  • Loading branch information
antznin committed Nov 29, 2024
1 parent e022897 commit c6faa6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/yocto-first-build-stm32/yocto-first-build-stm32.tex
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ \section{Set up the SD card}
Flash the SD card with that image:
\begin{bashinput}
umount /dev/mmcblk0p*
sudo dd if=../FlashLayout_sdcard_stm32mp157d-dk1-extensible.raw of=/dev/sdc bs=8M conv=fdatasync status=progress
sudo dd if=../FlashLayout_sdcard_stm32mp157d-dk1-extensible.raw of=/dev/mmcblk0 bs=8M conv=fdatasync status=progress
\end{bashinput}
\section{Setting up serial communication with the board}
Expand Down

0 comments on commit c6faa6c

Please sign in to comment.