diff options
| author | Matt Porter <[email protected]> | 2012-01-31 12:03:57 +0000 |
|---|---|---|
| committer | Albert ARIBAUD <[email protected]> | 2012-03-26 23:09:25 +0200 |
| commit | 24de357a30dbabf8e0eb5acb43397851b0bc53fb (patch) | |
| tree | f530b6ead4dbc66adb6af50936757e35289dcdb0 /arch/arm/include | |
| parent | 71e6840279e3da7f5c0c1f8002bb9943bd90aec6 (diff) | |
SPL: Add YMODEM over UART load support
Adds support for loading U-Boot from UART using YMODEM protocol.
If YMODEM support is enabled in SPL and the romcode indicates
that SPL loaded via UART then SPL will wait for start of a
YMODEM transfer via the console port.
Signed-off-by: Matt Porter <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'arch/arm/include')
| -rw-r--r-- | arch/arm/include/asm/omap_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/omap_common.h b/arch/arm/include/asm/omap_common.h index 34bec4568da..25f95b4bcda 100644 --- a/arch/arm/include/asm/omap_common.h +++ b/arch/arm/include/asm/omap_common.h @@ -99,6 +99,9 @@ void spl_nand_load_image(void); /* MMC SPL functions */ void spl_mmc_load_image(void); +/* YMODEM SPL functions */ +void spl_ymodem_load_image(void); + #ifdef CONFIG_SPL_BOARD_INIT void spl_board_init(void); #endif |
