Re: [U-Boot] [PATCH v3 50/54] mkimage: Set up a file size parameter and keep it updated

2015-08-10 Thread Marek Vasut
On Saturday, July 18, 2015 at 01:58:09 AM, Simon Glass wrote: On 25 June 2015 at 16:51, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Simon, On Tue, Jun 23, 2015 at 4:39 PM, Simon Glass s...@chromium.org wrote: Some functions called by mkimage would like to know the output file

Re: [U-Boot] [PATCH v3 50/54] mkimage: Set up a file size parameter and keep it updated

2015-08-10 Thread Marek Vasut
On Tuesday, August 11, 2015 at 01:43:05 AM, Marek Vasut wrote: On Saturday, July 18, 2015 at 01:58:09 AM, Simon Glass wrote: On 25 June 2015 at 16:51, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Simon, On Tue, Jun 23, 2015 at 4:39 PM, Simon Glass s...@chromium.org wrote:

Re: [U-Boot] [PATCH v3 50/54] mkimage: Set up a file size parameter and keep it updated

2015-07-17 Thread Simon Glass
On 25 June 2015 at 16:51, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Simon, On Tue, Jun 23, 2015 at 4:39 PM, Simon Glass s...@chromium.org wrote: Some functions called by mkimage would like to know the output file size. Initially this is the same as the input file size, but it may be

Re: [U-Boot] [PATCH v3 50/54] mkimage: Set up a file size parameter and keep it updated

2015-06-25 Thread Joe Hershberger
Hi Simon, On Tue, Jun 23, 2015 at 4:39 PM, Simon Glass s...@chromium.org wrote: Some functions called by mkimage would like to know the output file size. Initially this is the same as the input file size, but it may be affected by adding headers, etc. Add this information to the image

[U-Boot] [PATCH v3 50/54] mkimage: Set up a file size parameter and keep it updated

2015-06-23 Thread Simon Glass
Some functions called by mkimage would like to know the output file size. Initially this is the same as the input file size, but it may be affected by adding headers, etc. Add this information to the image parameters. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: None Changes