diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-09-13 10:25:40 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-09-13 10:25:40 +0200 |
commit | 5d5269f87fc00a3fe1960cacd92e3d04864dff7d (patch) | |
tree | 208a387f1e0f0399696132e556e58b36e6072efd /doc | |
parent | a87d46f7327eedead89284a0d0c5e5a769b984b9 (diff) | |
parent | d12ae80889568365ecb9e6698322f9771ae76dde (diff) | |
download | u-boot-imx-5d5269f87fc00a3fe1960cacd92e3d04864dff7d.zip u-boot-imx-5d5269f87fc00a3fe1960cacd92e3d04864dff7d.tar.gz u-boot-imx-5d5269f87fc00a3fe1960cacd92e3d04864dff7d.tar.bz2 |
Merge with /home/sr/git/u-boot/denx
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.nand-boot-ppc440 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/README.nand-boot-ppc440 b/doc/README.nand-boot-ppc440 index a82a10e..a1c1d8c 100644 --- a/doc/README.nand-boot-ppc440 +++ b/doc/README.nand-boot-ppc440 @@ -33,4 +33,28 @@ is set up. While still running from cache, I experienced problems accessing the NAND controller. +Example: Build and install NAND boot image for Sequoia (440EPx): + +a) Configure for sequoia with NAND boot support: +# make sequoia_nand_config + +b) Build image(s) +# make + +This will generate the SPL image in the "nand_spl" directory: +nand_spl/u-boot-spl.bin +Also another image is created spanning a whole NAND block (16kBytes): +nand_spl/u-boot-spl-16k.bin +The main NAND U-Boot image is generated in the toplevel directory: +u-boot.bin +A combined image of u-boot-spl-16k.bin and u-boot.bin is also created: +u-boot-nand.bin + +This image should be programmed at offset 0 in the NAND flash: + +# tftp 100000 /tftpboot/sequoia/u-boot-nand.bin +# nand erase 0 60000 +# nand write 100000 0 60000 + + September 07 2006, Stefan Roese <sr@denx.de> |