mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
spl: ymodem: Make SPL Y-Modem loader framework accessible
Expose SPL's Y-Modem core loader function via the common SPL header file so it can be re-used for purposes other than loading U-Boot itself. Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
This commit is contained in:
parent
9d6ee3e235
commit
e413033d35
2 changed files with 5 additions and 2 deletions
|
@ -68,8 +68,8 @@ static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset,
|
|||
return size;
|
||||
}
|
||||
|
||||
static int spl_ymodem_load_image(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev)
|
||||
int spl_ymodem_load_image(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev)
|
||||
{
|
||||
ulong size = 0;
|
||||
int err;
|
||||
|
|
|
@ -434,6 +434,9 @@ int spl_mmc_load(struct spl_image_info *spl_image,
|
|||
int raw_part,
|
||||
unsigned long raw_sect);
|
||||
|
||||
int spl_ymodem_load_image(struct spl_image_info *spl_image,
|
||||
struct spl_boot_device *bootdev);
|
||||
|
||||
/**
|
||||
* spl_invoke_atf - boot using an ARM trusted firmware image
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue