Skip to content

Commit

Permalink
slides/sysdev-bootloaders-u-boot: make command args more salient
Browse files Browse the repository at this point in the history
Make it easier to distinguish raw storage command arguments without any
further explanation.

Signed-off-by: Nasser Afshin <[email protected]>
Reviewed-by: Michael Opdenacker <[email protected]>
  • Loading branch information
nasafix-nasser authored and Michael Opdenacker committed Jan 11, 2024
1 parent 0f7cb34 commit e15c15b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions slides/sysdev-bootloaders-u-boot/sysdev-bootloaders-u-boot.tex
Original file line number Diff line number Diff line change
Expand Up @@ -518,16 +518,16 @@ \subsection{The U-boot bootloader}
\item NAND flash
\begin{itemize}
\item \code{nand info}
\item \code{nand read addr off|partition size}
\item \code{nand erase off size}
\item \code{nand write addr off|partition size}
\item \code{nand read <addr> <off|partition> <size>}
\item \code{nand erase [<off> [<size>]]}
\item \code{nand write <addr> <off|partition> <size>}
\item More: \code{help nand}
\end{itemize}
\item MMC
\begin{itemize}
\item \code{mmc info}
\item \codewithhash{mmc read addr blk\# cnt}
\item \codewithhash{mmc write addr blk\# cnt}
\item \codewithhash{mmc read <addr> <blk\#> <cnt>}
\item \codewithhash{mmc write <addr> <blk\#> <cnt>}
\item \code{mmc part} to show partition table
\item \code{mmc dev} to show/set current MMC device
\item More: \code{help mmc}
Expand All @@ -539,16 +539,16 @@ \subsection{The U-boot bootloader}
\item USB storage
\begin{itemize}
\item \code{usb info}
\item \codewithhash{usb read addr blk\# cnt}
\item \codewithhash{usb write addr blk\# cnt}
\item \codewithhash{usb read <addr> <blk\#> <cnt>}
\item \codewithhash{usb write <addr> <blk\#> <cnt>}
\item \code{usb part}
\item \code{usb dev}
\item More: \code{help usb}
\end{itemize}
\end{itemize}
Note: \code{addr} are addresses in RAM where data is stored
\end{columns}
\vspace{0.2cm}
Note: \code{addr} are addresses in RAM where data is stored
\end{frame}

\begin{frame}[fragile]{U-Boot commands example}
Expand Down

0 comments on commit e15c15b

Please sign in to comment.