[U-Boot] [PATCH 5/5 v2] microblaze: Copy bootfile from variables
Michal Simek
monstr at monstr.eu
Fri Oct 7 09:38:59 CEST 2011
Setup bootfile.
Signed-off-by: Michal Simek <monstr at monstr.eu>
---
v2: Move getenv assignment out of if
---
arch/microblaze/lib/board.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c
index d677329..ca5882d 100644
--- a/arch/microblaze/lib/board.c
+++ b/arch/microblaze/lib/board.c
@@ -186,6 +186,10 @@ void board_init (void)
uchar enetaddr[6];
eth_getenv_enetaddr("ethaddr", enetaddr);
printf("MAC: %pM\n", enetaddr);
+
+ s = getenv("bootfile");
+ if (s != NULL)
+ copy_filename(BootFile, s, sizeof(BootFile));
#endif
/* main_loop */
--
1.5.5.6
More information about the U-Boot
mailing list