Skip to content

Commit

Permalink
Embedded Linux labs: remove extra brace
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
  • Loading branch information
michaelopdenacker authored and tpetazzoni committed Oct 29, 2021
1 parent f86dfce commit e1d40c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/sysdev-kernel-cross-compiling-sama5d3.tex
Expand Up @@ -18,7 +18,7 @@ \section{Flashing the kernel and DTB in NAND flash}
% Verbatim doesn't seem to work in this \ifdefstring environment

\begin{ubootinput}
=> nand erase 0x180000 0x20000} %\rmfamily({\em NAND-offset size})%
=> nand erase 0x180000 0x20000 %\rmfamily({\em NAND-offset size})%
\end{ubootinput}

Then, let's erase the 5 MiB of NAND flash for the kernel image:
Expand All @@ -33,7 +33,7 @@ \section{Flashing the kernel and DTB in NAND flash}

% Verbatim doesn't seem to work in this \ifdefstring environment
\begin{ubootinput}
=> nand write 0x22000000 0x180000 0x20000} %\rmfamily({\em RAM-addr NAND-offset size})%
=> nand write 0x22000000 0x180000 0x20000 %\rmfamily({\em RAM-addr NAND-offset size})%
=> nand write 0x21000000 0x1a0000 0x500000
\end{ubootinput}

Expand All @@ -42,7 +42,7 @@ \section{Flashing the kernel and DTB in NAND flash}

% Verbatim doesn't seem to work in this \ifdefstring environment
\begin{ubootinput}
=> nand read 0x22000000 0x180000 0x20000} %\rmfamily({\em RAM-addr offset size})%
=> nand read 0x22000000 0x180000 0x20000 %\rmfamily({\em RAM-addr offset size})%
=> nand read 0x21000000 0x1a0000 0x500000
=> bootz 0x21000000 - 0x22000000
\end{ubootinput}
Expand Down

0 comments on commit e1d40c0

Please sign in to comment.