
jie han wrote:
I define CONFIG_OF_FLAT_TREE support under u-boot.I just want to know how can I get/set the third address(the address of the device-tree blob) that we will use at bootm command?Thanks ahead,
Sincerely, Jie
Hi Jie,
Board and processor are??? U-boot version is???
You most likely want to define CONFIG_OF_LIBFDT, CONFIG_OF_FLAT_TREE is deprecated.
I'm presuming you are using a recent u-boot (preferably tip-o-tree).
The device tree blob will be where you load it. :-) TFTP is a convenient method...
Your question could be interpreted that you don't have a blob to load. If not, you need to generate a blob using a FDT source file (.dts) that describes your hardware and compiled it with "dtc". Example FDT sources and the device tree compiler itself are now part of the linux kernel sources.
Good luck, gvb