diff options
author | Stefan Roese <sr@denx.de> | 2007-03-21 13:39:57 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-03-21 13:39:57 +0100 |
commit | 16c0cc1c82081a493ab87c51980b28336ce1bce8 (patch) | |
tree | a5b30fe483fb49f1a25883f25f8fbe06a5724125 /board/amcc/acadia/config.mk | |
parent | e01bd218b00af73499331a1a701625a852cd286f (diff) | |
download | u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.zip u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.tar.gz u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.tar.bz2 |
[PATCH] Add AMCC Acadia (405EZ) eval board support
This patch adds support for the new AMCC Acadia eval board.
Please note that this Acadia/405EZ support is still in a beta stage.
Still lot's of cleanup needed but we need a preliminary release now.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/acadia/config.mk')
-rw-r--r-- | board/amcc/acadia/config.mk | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/board/amcc/acadia/config.mk b/board/amcc/acadia/config.mk new file mode 100644 index 0000000..79b948e --- /dev/null +++ b/board/amcc/acadia/config.mk @@ -0,0 +1,41 @@ +# +# (C) Copyright 2000 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +sinclude $(TOPDIR)/board/amcc/liveoak/config.tmp + +ifndef TEXT_BASE +TEXT_BASE = 0xFFFC0000 +endif + +ifeq ($(CONFIG_NAND_U_BOOT),y) +LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds +endif + +ifeq ($(CONFIG_SPI_U_BOOT),y) +LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/u-boot-spi.lds +PAD_TO = 0x00840000 +endif + +ifeq ($(debug),1) +PLATFORM_CPPFLAGS += -DDEBUG +endif |