summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.denx.de>2006-08-24 00:26:42 +0200
committerWolfgang Denk <wd@pollux.denx.de>2006-08-24 00:26:42 +0200
commited1cf8456f2a5a4efdb4bb3d04b503d78f410e9c (patch)
treefb4d5d5a8f864a82f058292008b15cf3184a28b9 /board
parent5196a7a03bc436435787e1ad7044af94d93a5448 (diff)
downloadbarebox-ed1cf8456f2a5a4efdb4bb3d04b503d78f410e9c.tar.gz
barebox-ed1cf8456f2a5a4efdb4bb3d04b503d78f410e9c.tar.xz
Updates for MCC200 / PRS200 boards:
- support for configurations with SDRAM or DDR memory, - support for highboot and lowboot - adjusting environment definitions
Diffstat (limited to 'board')
-rw-r--r--board/mcc200/config.mk2
-rw-r--r--board/mcc200/mcc200.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/board/mcc200/config.mk b/board/mcc200/config.mk
index a8225598cc..192272334a 100644
--- a/board/mcc200/config.mk
+++ b/board/mcc200/config.mk
@@ -22,7 +22,7 @@
#
#
-# MCC200 board:
+# MCC200, PRS200 boards:
#
# Valid values for TEXT_BASE are:
#
diff --git a/board/mcc200/mcc200.c b/board/mcc200/mcc200.c
index 775030c17c..9c5780998e 100644
--- a/board/mcc200/mcc200.c
+++ b/board/mcc200/mcc200.c
@@ -197,7 +197,11 @@ long int initdram (int board_type)
int checkboard (void)
{
+#if defined(CONFIG_PRS200)
+ puts ("Board: PRS200\n");
+#else
puts ("Board: MCC200\n");
+#endif
return 0;
}