Re: [U-Boot] [PATCH 2/5] cmd_nand: some infrastructure fixes and refactoring

2010-10-13 Thread Scott Wood
On Tue, 12 Oct 2010 21:11:30 -0400 Mike Frysinger wrote: > On Monday, August 30, 2010 19:03:35 Scott Wood wrote: > > - Refactor arg_off_size for added readability and flexibility, > > and some added checks such as partition size. > > > > @@ -564,7 +624,7 @@ > > if (arg_off_size(argc - 2, arg

Re: [U-Boot] [PATCH 2/5] cmd_nand: some infrastructure fixes and refactoring

2010-10-12 Thread Mike Frysinger
On Monday, August 30, 2010 19:03:35 Scott Wood wrote: > - Refactor arg_off_size for added readability and flexibility, > and some added checks such as partition size. > > @@ -564,7 +624,7 @@ > if (arg_off_size(argc - 2, argv + 2, nand, &off, &size) < 0) seems this change is incomplete (this u

Re: [U-Boot] [PATCH 2/5] cmd_nand: some infrastructure fixes and refactoring

2010-08-31 Thread Ben Gardiner
On Mon, Aug 30, 2010 at 7:03 PM, Scott Wood wrote: > - If the current device is overridden by a named partition, >  - update the caller's pointer/index, rather than copy over the >    nand_info struct, and >  - be sure to call board_nand_select_device even when the device >    is overridden by a n

[U-Boot] [PATCH 2/5] cmd_nand: some infrastructure fixes and refactoring

2010-08-30 Thread Scott Wood
- If the current device is overridden by a named partition, - update the caller's pointer/index, rather than copy over the nand_info struct, and - be sure to call board_nand_select_device even when the device is overridden by a named partition. - Support 64-bit offsets/sizes in a few mo