diff options
author | Guillaume GARDET <guillaume.gardet@free.fr> | 2014-10-15 17:53:12 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-27 17:54:03 -0400 |
commit | 592f922261993bad8cfb96395342e25eda6776e3 (patch) | |
tree | ef21d085acc9f863ea50a7d1446e2acaedbd1aff /include/spl.h | |
parent | 205b4f33cfe58268df7d433f2da515fe660afd9c (diff) |
spl: Add EXT support to SPL
Add EXT filesystem support to SPL.
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
[trini: Fix a warning and checkpatch problems]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/spl.h b/include/spl.h index 4a63c1d3681..16b3566a947 100644 --- a/include/spl.h +++ b/include/spl.h @@ -74,6 +74,10 @@ int spl_load_image_fat_os(block_dev_desc_t *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); + #ifdef CONFIG_SPL_BOARD_INIT void spl_board_init(void); #endif |