Re: [U-Boot] [PATCH v2 5/6] cbfs: Add functions to support multiple CBFSs

2019-08-18 Thread Bin Meng
On Fri, Aug 16, 2019 at 10:43 PM Bin Meng wrote: > > On Thu, Aug 15, 2019 at 9:56 AM Simon Glass wrote: > > > > Sometimes an image has multiple CBFS. The current CBFS API is limited to > > handling only one at time. Also it keeps track of the CBFS internally in > > BSS, which does not work

Re: [U-Boot] [PATCH v2 5/6] cbfs: Add functions to support multiple CBFSs

2019-08-16 Thread Bin Meng
On Thu, Aug 15, 2019 at 9:56 AM Simon Glass wrote: > > Sometimes an image has multiple CBFS. The current CBFS API is limited to > handling only one at time. Also it keeps track of the CBFS internally in > BSS, which does not work before relocation, for example. > > Add a few new functions to

[U-Boot] [PATCH v2 5/6] cbfs: Add functions to support multiple CBFSs

2019-08-14 Thread Simon Glass
Sometimes an image has multiple CBFS. The current CBFS API is limited to handling only one at time. Also it keeps track of the CBFS internally in BSS, which does not work before relocation, for example. Add a few new functions to overcome these limitations. Signed-off-by: Simon Glass