mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
Merge git://git.denx.de/u-boot-dm
This commit is contained in:
commit
88033d737d
121 changed files with 1738 additions and 1022 deletions
|
@ -90,14 +90,16 @@ int spl_usb_load_image(void);
|
|||
int spl_sata_load_image(void);
|
||||
|
||||
/* SPL FAT image functions */
|
||||
int spl_load_image_fat(block_dev_desc_t *block_dev, int partition, const char *filename);
|
||||
int spl_load_image_fat_os(block_dev_desc_t *block_dev, int partition);
|
||||
int spl_load_image_fat(struct blk_desc *block_dev, int partition,
|
||||
const char *filename);
|
||||
int spl_load_image_fat_os(struct blk_desc *block_dev, int partition);
|
||||
|
||||
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image);
|
||||
|
||||
/* SPL EXT image functions */
|
||||
int spl_load_image_ext(block_dev_desc_t *block_dev, int partition, const char *filename);
|
||||
int spl_load_image_ext_os(block_dev_desc_t *block_dev, int partition);
|
||||
int spl_load_image_ext(struct blk_desc *block_dev, int partition,
|
||||
const char *filename);
|
||||
int spl_load_image_ext_os(struct blk_desc *block_dev, int partition);
|
||||
|
||||
/**
|
||||
* spl_init() - Set up device tree and driver model in SPL if enabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue