diff options
author | tomas.melin@vaisala.com <tomas.melin@vaisala.com> | 2017-01-13 13:20:14 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2017-01-13 17:40:38 +0100 |
commit | db1b79b886f085b5af09db9378f5c53417c3ecde (patch) | |
tree | 5844db57fca174b2ae55ce0b611aaea047d2216b /include/splash.h | |
parent | 7583f1f577db45c37e0c76dc67616347585aeda3 (diff) | |
download | u-boot-db1b79b886f085b5af09db9378f5c53417c3ecde.tar.gz |
splash: add support for loading splash from a FIT image
Enable support for loading a splash image from within a FIT image.
The image is assumed to be generated with mkimage -E flag to hold
the data external to the FIT.
Signed-off-by: Tomas Melin <tomas.melin@vaisala.com>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'include/splash.h')
-rw-r--r-- | include/splash.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/splash.h b/include/splash.h index 136eac7402..228aff441b 100644 --- a/include/splash.h +++ b/include/splash.h @@ -33,8 +33,9 @@ enum splash_storage { }; enum splash_flags { - SPLASH_STORAGE_RAW, - SPLASH_STORAGE_FS, + SPLASH_STORAGE_RAW, /* Stored in raw memory */ + SPLASH_STORAGE_FS, /* Stored within a file system */ + SPLASH_STORAGE_FIT, /* Stored inside a FIT image */ }; struct splash_location { |