Re: [U-Boot] [PATCH] splash: add support for loading splash from a FIT image

2016-11-25 Thread Tomas Melin
Hi Simon, On 11/24/2016 04:20 AM, Simon Glass wrote: >> diff --git a/common/splash_source.c b/common/splash_source.c >> index 72df2c1..d72aee1 100644 >> --- a/common/splash_source.c >> +++ b/common/splash_source.c >> @@ -16,6 +16,7 @@ >> #include >> #include >> #include >> +#include > >

Re: [U-Boot] [PATCH] splash: add support for loading splash from a FIT image

2016-11-23 Thread Simon Glass
Hi Tomas, On 21 November 2016 at 01:27, Tomas Melin wrote: > 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

[U-Boot] [PATCH] splash: add support for loading splash from a FIT image

2016-11-21 Thread Tomas Melin
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 --- common/splash_source.c | 73