aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-07-17 19:01:15 -0500
committerStefan Roese <sr@denx.de>2009-07-24 06:42:32 +0200
commit54381b79d268e1bead5d78ed8423df31a3cb0e2c (patch)
tree33f3fed4f59e64ecf492e2cbad6fe82b6d6d7796 /board
parent9b4ef1f5dc0daab64f46249a32e67279c4d44fd2 (diff)
xpedite1k: Sync checkboard() with other X-ES boards
Signed-off-by: Peter Tyser <ptyser@xes-inc.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board')
-rw-r--r--board/xpedite1k/xpedite1k.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/board/xpedite1k/xpedite1k.c b/board/xpedite1k/xpedite1k.c
index ed864bad6..4529b7ede 100644
--- a/board/xpedite1k/xpedite1k.c
+++ b/board/xpedite1k/xpedite1k.c
@@ -112,7 +112,20 @@ int board_early_init_f(void)
int checkboard(void)
{
- printf("Board: XES XPedite1000 440GX\n");
+ char *s;
+
+ printf("Board: X-ES %s PMC SBC\n", CONFIG_SYS_BOARD_NAME);
+ printf(" ");
+ s = getenv("board_rev");
+ if (s)
+ printf("Rev %s, ", s);
+ s = getenv("serial#");
+ if (s)
+ printf("Serial# %s, ", s);
+ s = getenv("board_cfg");
+ if (s)
+ printf("Cfg %s", s);
+ printf("\n");
return 0;
}