[FE training-materials-updates] More conversion of "NAND addr" to "NAND offset"

Michael Opdenacker michael.opdenacker at free-electrons.com
Fri Jan 25 17:36:28 CET 2013


Repository : git://git.free-electrons.com/training-materials.git

On branch  : master
Link       : http://git.free-electrons.com/training-materials/commit/?id=ac1cfa7c89eae8ee8f99cd48c040e1f01591cf8c

>---------------------------------------------------------------

commit ac1cfa7c89eae8ee8f99cd48c040e1f01591cf8c
Author: Michael Opdenacker <michael.opdenacker at free-electrons.com>
Date:   Fri Jan 25 17:35:40 2013 +0100

    More conversion of "NAND addr" to "NAND offset"
    
    Less confusing
    Signed-off-by: Michael Opdenacker <michael.opdenacker at free-electrons.com>


>---------------------------------------------------------------

ac1cfa7c89eae8ee8f99cd48c040e1f01591cf8c
 .../sysdev-kernel-cross-compiling.tex              |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/labs/sysdev-kernel-cross-compiling/sysdev-kernel-cross-compiling.tex b/labs/sysdev-kernel-cross-compiling/sysdev-kernel-cross-compiling.tex
index 340029c..12534fb 100644
--- a/labs/sysdev-kernel-cross-compiling/sysdev-kernel-cross-compiling.tex
+++ b/labs/sysdev-kernel-cross-compiling/sysdev-kernel-cross-compiling.tex
@@ -170,7 +170,7 @@ So, let's start by erasing the corresponding 4 MiB of NAND flash:
 
 \begin{verbatim}
 nand erase 0x280000 0x400000
-         (NAND addr) (size)
+        (NAND offset) (size)
 \end{verbatim}
 
 Then, copy the kernel from TFTP into memory, using the same address as
@@ -180,7 +180,7 @@ Then, flash the kernel image:
 
 \begin{verbatim}
 nand write 0x80000000 0x280000 0x400000
-           (RAM addr)   (NAND addr) (size)
+           (RAM addr) (NAND offset) (size)
 \end{verbatim}
 
 Power your board off and on, to clear RAM contents. We should now be able to load
@@ -188,7 +188,7 @@ the kernel image from NAND and boot it using:
 
 \begin{verbatim}
 nand read 0x80000000  0x280000    0x400000
-          (RAM addr)   (NAND addr) (size)
+          (RAM addr) (NAND offset) (size)
 bootm 0x80000000
 \end{verbatim}
 



More information about the training-materials-updates mailing list