diff options
author | Larry Johnson <lrj@arlinx.com> | 2007-12-27 11:28:51 -0500 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-12-27 19:35:37 +0100 |
commit | c591dffe0cbacd896ccbad06011fe6d6afa080da (patch) | |
tree | de2642b73f3f8652df687a18e18b003330586608 /board/korat/config.mk | |
parent | 87dc096829e6a6363f4fdd73653b0093a85adbe0 (diff) |
Add support for Korat PPC440EPx board
These patches add support for the PPC440EPx-based "Korat" board to
U-Boot. They are based primarily on support for the Sequoia board.
Signed-off-by: Larry Johnson <lrj@acm.org>
Diffstat (limited to 'board/korat/config.mk')
-rw-r--r-- | board/korat/config.mk | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/board/korat/config.mk b/board/korat/config.mk new file mode 100644 index 00000000000..39966e03eb4 --- /dev/null +++ b/board/korat/config.mk @@ -0,0 +1,37 @@ +# +# (C) Copyright 2002 +# 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 +# +# +# Korat (PPC440EPx) board +# + +TEXT_BASE = 0xFFFA0000 + +PLATFORM_CPPFLAGS += -DCONFIG_440=1 + +ifeq ($(debug),1) +PLATFORM_CPPFLAGS += -DDEBUG +endif + +ifeq ($(dbcr),1) +PLATFORM_CPPFLAGS += -DCFG_INIT_DBCR=0x8cff0000 +endif |