diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2014-03-20 13:23:53 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-25 13:23:06 +0000 |
commit | 843e3ecf9e3f9292537446a2feccc1d2645ed231 (patch) | |
tree | 09f6a010d5abb0f11825e86363c04ed7bccd60fe | |
parent | 37f7820d4d27650c94379acd25d4cd4666a2c97a (diff) | |
download | poky-843e3ecf9e3f9292537446a2feccc1d2645ed231.tar.gz |
bitbake: user-manual-metadata.xml: Added varflag for vardepvalueexclude.
Fixes [YOCTO #5897]
Added several new varflags to the existing list in the
"Variable Flags" section. The key one being the
"vardepvalueexclude" flag.
(Bitbake rev: 01a07dabb0d0c6a7f8c3c048396cfdf9d756b032)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/user-manual/user-manual-metadata.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bitbake/doc/user-manual/user-manual-metadata.xml b/bitbake/doc/user-manual/user-manual-metadata.xml index cd5736e839..3864c008d2 100644 --- a/bitbake/doc/user-manual/user-manual-metadata.xml +++ b/bitbake/doc/user-manual/user-manual-metadata.xml | |||
@@ -1058,6 +1058,40 @@ | |||
1058 | </para></listitem> | 1058 | </para></listitem> |
1059 | </itemizedlist> | 1059 | </itemizedlist> |
1060 | </para> | 1060 | </para> |
1061 | |||
1062 | <para> | ||
1063 | Several varflags are useful for controlling how signatures are | ||
1064 | calculated for variables. | ||
1065 | For more information on this process, see the | ||
1066 | "<link linkend='checksums'>Checksums (Signatures)</link>" | ||
1067 | section. | ||
1068 | <itemizedlist> | ||
1069 | <listitem><para><emphasis>vardeps:</emphasis> | ||
1070 | Specifies a space-separated list of additional | ||
1071 | variables to add to a variable's dependencies | ||
1072 | for the purposes of calculating its signature. | ||
1073 | Adding variables to this list is useful, for example, when | ||
1074 | a function refers to a variable in a manner that | ||
1075 | does not allow BitBake to automatically determine | ||
1076 | that the variable is referred to. | ||
1077 | </para></listitem> | ||
1078 | <listitem><para><emphasis>vardepvalue:</emphasis> | ||
1079 | If set, instructs BitBake to ignore the actual | ||
1080 | value of the variable and instead use the specified | ||
1081 | value when calculating the variable's signature. | ||
1082 | </para></listitem> | ||
1083 | <listitem><para><emphasis>vardepsexclude:</emphasis> | ||
1084 | Specifies a space-separated list of variables | ||
1085 | that should be excluded from a variable's dependencies | ||
1086 | for the purposes of calculating its signature. | ||
1087 | </para></listitem> | ||
1088 | <listitem><para><emphasis>vardepvalueexclude:</emphasis> | ||
1089 | Specifies a pipe-separated list of strings to exclude | ||
1090 | from the variable's value when calculating the | ||
1091 | variable's signature. | ||
1092 | </para></listitem> | ||
1093 | </itemizedlist> | ||
1094 | </para> | ||
1061 | </section> | 1095 | </section> |
1062 | 1096 | ||
1063 | <section id='events'> | 1097 | <section id='events'> |