diff options
author | Bartlomiej Sieka <tur@semihalf.com> | 2006-10-13 21:09:09 +0200 |
---|---|---|
committer | Bartlomiej Sieka <tur@semihalf.com> | 2006-10-13 21:09:09 +0200 |
commit | 4707fb50cc9f815996be5f2e5a8660de852b2c37 (patch) | |
tree | b15772a39a769fa5ef3ba71e0dc96efe5e88cb09 /lib_ppc/board.c | |
parent | aeec782b020930732eab075af97212c3f03afcae (diff) | |
download | u-boot-4707fb50cc9f815996be5f2e5a8660de852b2c37.zip u-boot-4707fb50cc9f815996be5f2e5a8660de852b2c37.tar.gz u-boot-4707fb50cc9f815996be5f2e5a8660de852b2c37.tar.bz2 |
Preliminary patch adding support for the MarelV38B board.
Diffstat (limited to 'lib_ppc/board.c')
-rw-r--r-- | lib_ppc/board.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index cf0e3fd..3e401be 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -1,5 +1,5 @@ /* - * (C) Copyright 2000-2004 + * (C) Copyright 2000-2006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this @@ -805,7 +805,10 @@ void board_init_r (gd_t *id, ulong dest_addr) #endif /* CFG_EXTBDINFO */ s = getenv ("ethaddr"); -#if defined (CONFIG_MBX) || defined (CONFIG_RPXCLASSIC) || defined(CONFIG_IAD210) +#if defined (CONFIG_MBX) || \ + defined (CONFIG_RPXCLASSIC) || \ + defined(CONFIG_IAD210) || \ + defined(CONFIG_V38B) if (s == NULL) board_get_enetaddr (bd->bi_enetaddr); else |