Skip to content
Snippets Groups Projects
Commit 54381b79 authored by Peter Tyser's avatar Peter Tyser Committed by Stefan Roese
Browse files

xpedite1k: Sync checkboard() with other X-ES boards


Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent 9b4ef1f5
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -32,6 +32,7 @@
/* High Level Configuration Options */
#define CONFIG_XPEDITE1K 1 /* Board is XPedite 1000 */
#define CONFIG_SYS_BOARD_NAME "XPedite1000"
#define CONFIG_4xx 1 /* ... PPC4xx family */
#define CONFIG_440 1
#define CONFIG_440GX 1 /* 440 GX */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment