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

2017-01-13 Thread Tomas Melin
Hi Igor, Simon, On 12/26/2016 09:24 AM, Igor Grinberg wrote: > Hi Tomas, > > Sorry for the late response... > > On 12/20/16 07:29, Tomas Melin wrote: >> Hi Igor, Simon, >> >> On 12/15/2016 11:08 AM, Igor Grinberg wrote: >>> Hi Tomas, >>> >>> On 12/14/16 16:23, Tomas Melin wrote: Hi Simon,

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

2016-12-25 Thread Igor Grinberg
Hi Tomas, Sorry for the late response... On 12/20/16 07:29, Tomas Melin wrote: > Hi Igor, Simon, > > On 12/15/2016 11:08 AM, Igor Grinberg wrote: >> Hi Tomas, >> >> On 12/14/16 16:23, Tomas Melin wrote: >>> Hi Simon, Igor, >>> >>> On 12/14/2016 02:53 PM, Igor Grinberg wrote: On 12/13/16

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

2016-12-19 Thread Tomas Melin
Hi Igor, Simon, On 12/15/2016 11:08 AM, Igor Grinberg wrote: > Hi Tomas, > > On 12/14/16 16:23, Tomas Melin wrote: >> Hi Simon, Igor, >> >> On 12/14/2016 02:53 PM, Igor Grinberg wrote: >>> On 12/13/16 22:29, Simon Glass wrote: >>> >>> I think two above debug() are very legitimate - no

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

2016-12-15 Thread Igor Grinberg
Hi Tomas, On 12/14/16 16:23, Tomas Melin wrote: > Hi Simon, Igor, > > On 12/14/2016 02:53 PM, Igor Grinberg wrote: >> On 12/13/16 22:29, Simon Glass wrote: >> >> I think two above debug() are very legitimate - no need to shout if no >> FIT image >> or no splash in it... >>

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

2016-12-14 Thread Tomas Melin
Hi Simon, Igor, On 12/14/2016 02:53 PM, Igor Grinberg wrote: > On 12/13/16 22:29, Simon Glass wrote: > > I think two above debug() are very legitimate - no need to shout if no > FIT image > or no splash in it... > >> + res = fit_image_get_data_offset(fit_header,

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

2016-12-14 Thread Igor Grinberg
On 12/13/16 22:29, Simon Glass wrote: > Hi Igor, > > On 12 December 2016 at 01:37, Igor Grinberg wrote: >> On 12/11/16 22:27, Simon Glass wrote: >>> Hi Igor, >>> >>> On 11 December 2016 at 10:37, Igor Grinberg wrote: Hi Tomas, Simon,

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

2016-12-13 Thread Simon Glass
Hi Igor, On 12 December 2016 at 01:37, Igor Grinberg wrote: > On 12/11/16 22:27, Simon Glass wrote: >> Hi Igor, >> >> On 11 December 2016 at 10:37, Igor Grinberg wrote: >>> Hi Tomas, Simon, >>> >>> Sorry, to break in that late... >>> I have a

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

2016-12-12 Thread Igor Grinberg
On 12/11/16 22:27, Simon Glass wrote: > Hi Igor, > > On 11 December 2016 at 10:37, Igor Grinberg wrote: >> Hi Tomas, Simon, >> >> Sorry, to break in that late... >> I have a quick question below. >> >> On 12/05/16 09:36, Tomas Melin wrote: >>> Enable support for loading

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

2016-12-11 Thread Simon Glass
Hi Igor, On 11 December 2016 at 10:37, Igor Grinberg wrote: > Hi Tomas, Simon, > > Sorry, to break in that late... > I have a quick question below. > > On 12/05/16 09:36, Tomas Melin wrote: >> Enable support for loading a splash image from within a FIT image. >> The

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

2016-12-11 Thread Igor Grinberg
Hi Tomas, Simon, Sorry, to break in that late... I have a quick question below. On 12/05/16 09:36, 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. > >

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

2016-12-06 Thread Simon Glass
On 5 December 2016 at 02:36, 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 v4 2/2] splash: add support for loading splash from a FIT image

2016-12-04 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 --- Changes in v4: - Added missing changelog Changes in v3: - Add documentation