diff options
author | Stefan Roese <sr@denx.de> | 2007-06-15 08:18:01 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-06-15 08:18:01 +0200 |
commit | b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2 (patch) | |
tree | 656f947d6d3b4cf79cb0812dc568a47b639bf93a /board/lwmon5/config.mk | |
parent | 85f737376d5ff3d5f0d45a8b657686326d175307 (diff) | |
download | u-boot-imx-b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2.zip u-boot-imx-b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2.tar.gz u-boot-imx-b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2.tar.bz2 |
[ppc4xx] Add initial lwmon5 board support
This patch adds initial support for the Liebherr lwmon5 board euqipped
with an AMCC 440EPx PowerPC.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/lwmon5/config.mk')
-rw-r--r-- | board/lwmon5/config.mk | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/board/lwmon5/config.mk b/board/lwmon5/config.mk new file mode 100644 index 0000000..bf2b879 --- /dev/null +++ b/board/lwmon5/config.mk @@ -0,0 +1,39 @@ +# +# (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 +# +# +# lwmon5 (440EPx) +# + +ifndef TEXT_BASE +TEXT_BASE = 0xFFF80000 +endif + +PLATFORM_CPPFLAGS += -DCONFIG_440=1 + +ifeq ($(debug),1) +PLATFORM_CPPFLAGS += -DDEBUG +endif + +ifeq ($(dbcr),1) +PLATFORM_CPPFLAGS += -DCFG_INIT_DBCR=0x8cff0000 +endif |