diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-04 18:53:41 (GMT) |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-15 22:32:33 (GMT) |
commit | de30122bb58fee7b0f94bcfabab595b6ad757336 (patch) | |
tree | e109b8799a2fe97e49424bec56cbe448154d1dd4 /arch/avr32 | |
parent | 50a47d0523e8efebe912bef539a77ffd42116451 (diff) | |
download | u-boot-de30122bb58fee7b0f94bcfabab595b6ad757336.tar.xz |
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/avr32')
-rw-r--r-- | arch/avr32/lib/board.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/avr32/lib/board.c b/arch/avr32/lib/board.c index 3c2d0fb..b390a6c 100644 --- a/arch/avr32/lib/board.c +++ b/arch/avr32/lib/board.c @@ -327,9 +327,6 @@ void board_init_r(gd_t *new_gd, ulong dest_addr) bb_miiphy_init(); #endif #if defined(CONFIG_CMD_NET) - s = getenv("bootfile"); - if (s) - copy_filename(BootFile, s, sizeof(BootFile)); puts("Net: "); eth_initialize(gd->bd); #endif |