blob: e2f14b0ced6eb48b75e514ef54862dcdbb869403 [file] [log] [blame]
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +01001#
2# Author: Grzegorz Bernacki, Semihalf, gjb@semihalf.com
3#
4
5#
6# digsyMTC board:
7#
8# Valid values for TEXT_BASE are:
9#
10# 0xFFF00000 boot high (standard configuration)
11# 0xFE000000 boot low
12# 0x00100000 boot from RAM (for testing only)
13#
14
15sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
16
17ifndef TEXT_BASE
18## Standard: boot high
19TEXT_BASE = 0xFFF00000
20## For testing: boot from RAM
21# TEXT_BASE = 0x00100000
22endif
23
24PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -I$(TOPDIR)/board