Re: [U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-09 Thread Stefano Babic
On 01/09/2014 14:56, Fabio Estevam wrote: > According to mx53 and mx6 reference manuals: > > "The maximum size of the DCD limited to 1768 bytes." > > As each DCD entry consists of 8 bytes, we have a total of 1768 / 8 = 221, and > excluding the first entry, which is the header leads to 220 as the

Re: [U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-02 Thread Nitin Garg
On 09/01/2014 07:56 AM, Fabio Estevam wrote: > According to mx53 and mx6 reference manuals: > > "The maximum size of the DCD limited to 1768 bytes." > > As each DCD entry consists of 8 bytes, we have a total of 1768 / 8 = 221, and > excluding the first entry, which is the header leads to 220 as t

Re: [U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-02 Thread Nitin Garg
On 09/01/2014 07:56 AM, Fabio Estevam wrote: > According to mx53 and mx6 reference manuals: > > "The maximum size of the DCD limited to 1768 bytes." > > As each DCD entry consists of 8 bytes, we have a total of 1768 / 8 = 221, and > excluding the first entry, which is the header leads to 220 as t

Re: [U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-02 Thread Tom Rini
On Mon, Sep 01, 2014 at 01:35:22PM +, Nitin Garg wrote: > Acked! Please note that patchwork won't pick that up, only a properly formatted acked-by line, thanks! > > Regards, > Nitin Garg > > > -Original Message- > From: Fabio Estevam [mailto:fabio.este...@freescale.com] > Sent: M

Re: [U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-01 Thread Nitin Garg
Acked! Regards, Nitin Garg -Original Message- From: Fabio Estevam [mailto:fabio.este...@freescale.com] Sent: Monday, September 01, 2014 7:56 AM To: sba...@denx.de Cc: u-boot@lists.denx.de; jonas.d.karls...@gmail.com; Li Ye-B37916; Garg Nitin-B37173; Estevam Fabio-R49496 Subject: [PATCH

[U-Boot] [PATCH] tools: imximage: Fix the maximum DCD size for mx53/mx6

2014-09-01 Thread Fabio Estevam
According to mx53 and mx6 reference manuals: "The maximum size of the DCD limited to 1768 bytes." As each DCD entry consists of 8 bytes, we have a total of 1768 / 8 = 221, and excluding the first entry, which is the header leads to 220 as the maximum number for DCD size. Reported-by: Jonas Karls