Mikhail Zaturenskiy wrote: > Is it possible to look at a post-fixup device tree in u-boot? It looks > like u-boot is not updating my dts with the values for my RAM, cpu > frequency, etc. before loading the kernel. > > Is there any obvious reason for this? Am I missing a #define of some sort?
Hi Mikhail, The board fixup is a board-specific thing. Are you doing that in your board configuration? If you have CONFIG_OF_BOARD_SETUP defined (if you don't that probably is the answer to your missing #define question), you can run fdt boardsetup and then fdt print / to see what the fixed up tree looks like. You can also run the bootm command step-by-step (some steps may not apply to your board)... bootm start bootm loados bootm ramdisk bootm fdt bootm bdt bootm cmdline bootm prep Print out the tree: fdt print / (last step is...) bootm go Best regards, gvb _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

