U-boot dependencies digraph source

From Dejvino's Knowledge Base
Revision as of 22:26, 26 March 2020 by Dejvino (talk | contribs) (Created page with "== Image == thumb|center == Source Code == Built using graphviz. <pre> digraph Makefile { { rank=same "u-boot.itb" "idbloader.i...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Image

U-boot dependencies digraph.png

Source Code

Built using graphviz.

digraph Makefile {
	{ rank=same "u-boot.itb" "idbloader.img" }

	"u-boot.itb" [
		shape = box
		color = blue
		]

	"idbloader.img" [
		shape = box
		color = blue
		]

	{"idbloader.img" "u-boot.img"} -> "u-boot-rockchip.bin";
	{"u-boot-nodtb.bin" "dts/dt.dtb" "u-boot.bin"} -> "u-boot.img";
	"tpl/u-boot-tpl.bin" -> "tpl/u-boot-tpl-rockchip.bin";
	{"tpl/u-boot-tpl-rockchip.bin" "spl/u-boot-spl.bin"} -> "idbloader.img";
	"dts/dt.dtb" -> "tpl/u-boot-tpl.bin";
	{"u-boot-nodtb.bin" "dts/dt.dtb" "u-boot.its"} -> "u-boot.itb";
	"u-boot-nodtb.bin" -> "u-boot.bin";
	"u-boot" -> "u-boot-nodtb.bin";
	{"u-boot" "u-boot-nodtb.bin"} -> "u-boot.its";
	"spl/u-boot-spl" -> "spl/u-boot-spl.bin";
	"u-boot" -> "dts/dt.dtb";
	"prepare" -> {"tpl/u-boot-tpl.bin" "spl/u-boot-spl"};

/* The rest is too detailed: */
//	"dts/dt.dtb" -> "dtbs";
//	"u-boot-nodtb.bin" -> "u-boot-dtb.img";
//	"dts/dt.dtb" -> "u-boot-dtb.img";
//	{"u-boot.bin" "tpl/u-boot-tpl.bin"} -> "tpl/u-boot-with-tpl.bin";
//	"spl/u-boot-spl.bin" -> "SPL";
//	"dts/dt.dtb" -> "u-boot.dtb";
//	{"u-boot-nodtb.bin" "dts/dt.dtb"} -> "u-boot-dtb.bin";
//	"u-boot.cfg" -> "cfg";
}

Related