diff options
author | Ilya Yanok <ilya.yanok@cogentembedded.com> | 2013-02-05 11:36:24 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-18 13:48:04 -0500 |
commit | 62a814310e4794a1218d0057142cf57349924a1c (patch) | |
tree | 421090b9076275ee86467eee25fb8a9590bd9f61 /common/spl | |
parent | 9648865d5eba4478398051b59610992bd698fb5a (diff) | |
download | u-boot-imx-62a814310e4794a1218d0057142cf57349924a1c.zip u-boot-imx-62a814310e4794a1218d0057142cf57349924a1c.tar.gz u-boot-imx-62a814310e4794a1218d0057142cf57349924a1c.tar.bz2 |
spl: support for booting via usbeth
In case of usbeth booting just call net_load_image("usb_ether").
This patch also adds CONFIG_SPL_USBETH_SUPPORT and
CONFIG_SPL_MUSB_NEW_SUPPORT config options to enable linking of SPL
against USB gagdet support and new MUSB driver resp.
Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
Diffstat (limited to 'common/spl')
-rw-r--r-- | common/spl/spl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index ff9ba7b..6a5a136 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -221,6 +221,11 @@ void board_init_r(gd_t *dummy1, ulong dummy2) #endif break; #endif +#ifdef CONFIG_SPL_USBETH_SUPPORT + case BOOT_DEVICE_USBETH: + spl_net_load_image("usb_ether"); + break; +#endif default: debug("SPL: Un-supported Boot Device\n"); hang(); |