diff options
author | Stefan Roese <sr@denx.de> | 2006-09-12 20:19:10 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-09-12 20:19:10 +0200 |
commit | d12ae80889568365ecb9e6698322f9771ae76dde (patch) | |
tree | 7dd321e0b7a9d9a1e438995c2c7c4bf1587d9774 /board/amcc/sequoia | |
parent | a73c8dbb437fb55ecb660cb962c8c1cc85b8a654 (diff) | |
download | u-boot-imx-d12ae80889568365ecb9e6698322f9771ae76dde.zip u-boot-imx-d12ae80889568365ecb9e6698322f9771ae76dde.tar.gz u-boot-imx-d12ae80889568365ecb9e6698322f9771ae76dde.tar.bz2 |
Add NAND environment support for PPC440EPx Sequoia NAND boot config
Patch by Stefan Roese, 12 Sep 2006
Diffstat (limited to 'board/amcc/sequoia')
-rw-r--r-- | board/amcc/sequoia/u-boot-nand.lds | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/board/amcc/sequoia/u-boot-nand.lds b/board/amcc/sequoia/u-boot-nand.lds index c3d3d96..cf2e2b5 100644 --- a/board/amcc/sequoia/u-boot-nand.lds +++ b/board/amcc/sequoia/u-boot-nand.lds @@ -1,5 +1,5 @@ /* - * (C) Copyright 2002 + * (C) Copyright 2006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this @@ -56,6 +56,12 @@ SECTIONS cpu/ppc4xx/start.o (.text) + /* Align to next NAND block */ + . = ALIGN(0x4000); + common/environment.o (.ppcenv) + /* Keep some space here for redundant env and potential bad env blocks */ + . = ALIGN(0x10000); + *(.text) *(.fixup) *(.got1) |