Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-15 Thread Simon Glass
Hi Grant, On Fri, Oct 14, 2011 at 10:46 PM, Grant Likely grant.lik...@secretlab.ca wrote: On Thu, Oct 13, 2011 at 3:50 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Thursday, October 13, 2011 3:25 PM: Hi Stephen, On Thu, Oct 13, 2011 at 2:21 PM, Stephen Warren

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-14 Thread Simon Glass
Hi Stephen, On Thu, Oct 13, 2011 at 2:50 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Thursday, October 13, 2011 3:25 PM: Hi Stephen, On Thu, Oct 13, 2011 at 2:21 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-14 Thread Grant Likely
On Thu, Oct 13, 2011 at 3:50 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Thursday, October 13, 2011 3:25 PM: Hi Stephen, On Thu, Oct 13, 2011 at 2:21 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Stephen Warren
Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option allows U-Boot to embed a binary device tree into its image to allow run-time control of peripherals. This device tree is for U-Boot's own use and is not necessarily the same one as is passed to the kernel. ... diff --git

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Simon Glass
Hi Stephen, On Thu, Oct 13, 2011 at 2:13 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option allows U-Boot to embed a binary device tree into its image to allow run-time control of peripherals. This device tree is for U-Boot's

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Simon Glass
Hi Stephen, On Thu, Oct 13, 2011 at 2:21 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option allows U-Boot to embed a binary device tree into its image to allow run-time control of peripherals. This device tree is for U-Boot's

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Stephen Warren
Simon Glass wrote at Thursday, October 13, 2011 3:25 PM: Hi Stephen, On Thu, Oct 13, 2011 at 2:21 PM, Stephen Warren swar...@nvidia.com wrote: Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option allows U-Boot to embed a binary device tree into its image to allow

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Mike Frysinger
On Tuesday 11 October 2011 18:26:07 Simon Glass wrote: --- /dev/null +++ b/dts/Makefile +clean: + rm -f $(OBJS) $(LIB) + rm -f $(DT_BIN) + +distclean: clean i don't think this actually gets used, so punt it -mike signature.asc Description: This is a digitally signed message

Re: [U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-13 Thread Stephen Warren
Simon Glass wrote at Tuesday, October 11, 2011 4:26 PM: This new option allows U-Boot to embed a binary device tree into its image to allow run-time control of peripherals. This device tree is for U-Boot's own use and is not necessarily the same one as is passed to the kernel. The device

[U-Boot] [PATCH v3 2/6] fdt: Add support for embedded device tree (CONFIG_OF_EMBED)

2011-10-11 Thread Simon Glass
This new option allows U-Boot to embed a binary device tree into its image to allow run-time control of peripherals. This device tree is for U-Boot's own use and is not necessarily the same one as is passed to the kernel. The device tree compiler output should be placed in the $(obj) rooted tree.