diff options
author | Stefan Roese <sr@denx.de> | 2007-11-03 12:08:28 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-11-03 12:08:28 +0100 |
commit | 3d6cb3b24add6415f86a0f013ea40f5639b90047 (patch) | |
tree | 34e0b53e4ce78d8d965bb3af64495cdcd39f4c2f /board/amcc/kilauea/config.mk | |
parent | 5d96d40d3f36da33348e68f9ea993f383e11f997 (diff) | |
download | u-boot-imx-3d6cb3b24add6415f86a0f013ea40f5639b90047.zip u-boot-imx-3d6cb3b24add6415f86a0f013ea40f5639b90047.tar.gz u-boot-imx-3d6cb3b24add6415f86a0f013ea40f5639b90047.tar.bz2 |
ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
Again, only one image supports both targets.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/kilauea/config.mk')
-rw-r--r-- | board/amcc/kilauea/config.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/board/amcc/kilauea/config.mk b/board/amcc/kilauea/config.mk index a46b197..f5800eb 100644 --- a/board/amcc/kilauea/config.mk +++ b/board/amcc/kilauea/config.mk @@ -1,5 +1,5 @@ # -# (C) Copyright 2000 +# (C) Copyright 2007 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this @@ -21,4 +21,12 @@ # MA 02111-1307 USA # +sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp + +ifndef TEXT_BASE TEXT_BASE = 0xFFFA0000 +endif + +ifeq ($(debug),1) +PLATFORM_CPPFLAGS += -DDEBUG +endif |