From 592f922261993bad8cfb96395342e25eda6776e3 Mon Sep 17 00:00:00 2001 From: Guillaume GARDET Date: Wed, 15 Oct 2014 17:53:12 +0200 Subject: spl: Add EXT support to SPL Add EXT filesystem support to SPL. Signed-off-by: Guillaume GARDET [trini: Fix a warning and checkpatch problems] Signed-off-by: Tom Rini --- include/spl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/spl.h') diff --git a/include/spl.h b/include/spl.h index 4a63c1d368..16b3566a94 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 -- cgit v1.2.1