diff options
author | Wolfgang Grandegger <wg@grandegger.com> | 2009-02-11 18:38:21 +0100 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2009-02-16 18:05:59 -0600 |
commit | ad7ee5d43b0db94079d56521dabca25674f28747 (patch) | |
tree | 8fbb631b84deaec242659e629e02352418c8ea00 /board/tqc | |
parent | a318234878c346e673b2ef8dc4b14b338fe7fc2b (diff) |
MPC85xx: TQM8548: add support for the TQM8548_BE module
The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
interface. With NAND support, the image is significantly larger and
TEXT_BASE is adjusted accordingly. U-Boot can be built for this
module with "$ make TQM8548_BE_config".
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Diffstat (limited to 'board/tqc')
-rw-r--r-- | board/tqc/tqm85xx/config.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/board/tqc/tqm85xx/config.mk b/board/tqc/tqm85xx/config.mk index 52e84ad7723..37b7b234ae6 100644 --- a/board/tqc/tqm85xx/config.mk +++ b/board/tqc/tqm85xx/config.mk @@ -23,7 +23,9 @@ # # tqm85xx board -# default CCARBAR is at 0xff700000 -# assume U-Boot is less than 256k # +ifeq ($(CONFIG_TQM8548_BE),y) +TEXT_BASE = 0xfff80000 +else TEXT_BASE = 0xfffc0000 +endif |