diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-04 18:53:41 +0000 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-15 17:32:33 -0500 |
commit | de30122bb58fee7b0f94bcfabab595b6ad757336 (patch) | |
tree | e109b8799a2fe97e49424bec56cbe448154d1dd4 /arch/mips/lib/board.c | |
parent | 50a47d0523e8efebe912bef539a77ffd42116451 (diff) | |
download | u-boot-imx-de30122bb58fee7b0f94bcfabab595b6ad757336.zip u-boot-imx-de30122bb58fee7b0f94bcfabab595b6ad757336.tar.gz u-boot-imx-de30122bb58fee7b0f94bcfabab595b6ad757336.tar.bz2 |
net: move bootfile init into eth_initialize
All arches init this the same way, so move the logic into the core
net code to avoid duplicating it everywhere else.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'arch/mips/lib/board.c')
-rw-r--r-- | arch/mips/lib/board.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c index 84e55f2..59a8001 100644 --- a/arch/mips/lib/board.c +++ b/arch/mips/lib/board.c @@ -339,14 +339,6 @@ void board_init_r(gd_t *id, ulong dest_addr) /* Initialize from environment */ load_addr = getenv_ulong("loadaddr", 16, load_addr); -#if defined(CONFIG_CMD_NET) - { - char *s = getenv("bootfile"); - - if (s != NULL) - copy_filename(BootFile, s, sizeof(BootFile)); - } -#endif #ifdef CONFIG_CMD_SPI puts("SPI: "); |