Re: [PATCH 1/3] Add support for binary includes.

2008-01-07 Thread Scott Wood
On Mon, Jan 07, 2008 at 09:24:32AM -0600, Jon Loeliger wrote: > So, like, the other day David Gibson mumbled: > > > > > > Hrm. Can we leave this one until after 1.1? Since it adds new > > syntax, I think it would be worth cogitating a bit longer. > > Double hrm. > > Scott, can you remind us

Re: [PATCH 1/3] Add support for binary includes.

2008-01-07 Thread Jon Loeliger
So, like, the other day David Gibson mumbled: > > > Hrm. Can we leave this one until after 1.1? Since it adds new > syntax, I think it would be worth cogitating a bit longer. Double hrm. Scott, can you remind us why this feature was requested off the U-Boot list, please? I'm trying to decid

Re: [PATCH 1/3] Add support for binary includes.

2008-01-05 Thread David Gibson
On Fri, Jan 04, 2008 at 03:10:43PM -0600, Scott Wood wrote: > A property's data can be populated with a file's contents > as follows: > > node { > prop = /incbin/("path/to/data"); > }; > > A subset of a file can be included by passing start and size parameters. > For example, to include by

[PATCH 1/3] Add support for binary includes.

2008-01-04 Thread Scott Wood
A property's data can be populated with a file's contents as follows: node { prop = /incbin/("path/to/data"); }; A subset of a file can be included by passing start and size parameters. For example, to include bytes 8 through 23: node { prop = /incbin/("path/to/data", 8, 16); };