diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-08 16:03:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-08 16:43:36 +0200 |
commit | c67423c331333a0c94fbe6af8658dda0ffef967e (patch) | |
tree | 61c7c5133f6eba20a792e9c158410211e9bffaf3 | |
parent | 4cca66f877997c34d0c28d00f8dcfee049db5c19 (diff) | |
download | buildroot-c67423c331333a0c94fbe6af8658dda0ffef967e.tar.gz buildroot-c67423c331333a0c94fbe6af8658dda0ffef967e.zip |
manual: document the new graph-depends options
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Samuel Martin <s.martin49@gmail.com>
Reviewed-by: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | docs/manual/common-usage.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt index 16a13512c2..eb83990244 100644 --- a/docs/manual/common-usage.txt +++ b/docs/manual/common-usage.txt @@ -94,6 +94,8 @@ to +make+ or set in the environment: default), or +png+. * +BR2_GRAPH_DEPS_OPTS+ to pass extra options to the dependency graph; see xref:graph-depends[] for the accepted options +* +BR2_GRAPH_DOT_OPTS+ is passed verbatim as options to the +dot+ utility to + draw the dependency graph. An example that uses config files located in the toplevel directory and in your $HOME: @@ -204,8 +206,15 @@ The +graph-depends+ behaviour can be controlled by setting options in the * +--depth N+, +-d N+, to limit the dependency depth to +N+ levels. The default, +0+, means no limit. +* +--transitive+, +--no-transitive+, to draw (or not) the transitive + dependencies. The default is to draw transitive dependencies. + +* +--colours R,T,H+, the comma-separated list of colours to draw the + root package (+R+), the target packages (+T+) and the host packages + (+H+). Defaults to: +lightblue,grey,gainsboro+ + -------------------------------- -BR2_GRAPH_DEPS_OPTS='-d 3' make graph-depends +BR2_GRAPH_DEPS_OPTS='-d 3 --no-transitive --colours=red,green,blue' make graph-depends -------------------------------- === Graphing the build duration |