2006-02-21 23:43:16 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2003-2006
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2006-08-23 22:26:42 +00:00
|
|
|
# MCC200, PRS200 boards:
|
2006-02-21 23:43:16 +00:00
|
|
|
#
|
2006-03-04 13:57:03 +00:00
|
|
|
# Valid values for TEXT_BASE are:
|
|
|
|
#
|
2006-07-23 20:40:51 +00:00
|
|
|
# 0xFC000000 boot low (standard configuration)
|
|
|
|
# 0xFFF00000 boot high
|
2006-03-04 13:57:03 +00:00
|
|
|
# 0x00100000 boot from RAM (for testing only)
|
|
|
|
#
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
|
2006-02-21 23:43:16 +00:00
|
|
|
|
2006-03-04 13:57:03 +00:00
|
|
|
ifndef TEXT_BASE
|
2006-07-23 20:40:51 +00:00
|
|
|
## Standard: boot low
|
|
|
|
TEXT_BASE = 0xFC000000
|
|
|
|
## Boot high
|
|
|
|
# TEXT_BASE = 0xFFF00000
|
2006-03-04 13:57:03 +00:00
|
|
|
## For testing: boot from RAM
|
2006-02-21 23:43:16 +00:00
|
|
|
# TEXT_BASE = 0x00100000
|
2006-03-04 13:57:03 +00:00
|
|
|
endif
|
2006-02-21 23:43:16 +00:00
|
|
|
|
|
|
|
PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board
|