diff options
author | Paul Eggleton <bluelightning@bluelightning.org> | 2023-04-22 15:05:23 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-04-22 10:30:30 +0100 |
commit | bfa9338b57fa232f6815440e4530566d92c7d23c (patch) | |
tree | 9267926b0e08dcef716e9bc1e60ef3ac3716d580 | |
parent | 433a90204c63420910ade1fe70d303e7baf30e8b (diff) | |
download | poky-bfa9338b57fa232f6815440e4530566d92c7d23c.tar.gz |
bitbake: bitbake-user-manual: add BB_HASH_CODEPARSER_VALS
New variable for 2.4.
(Bitbake rev: d97d62e2cbe4bae17f0886f3b4759e8f9ba6d38c)
Signed-off-by: Paul Eggleton <bluelightning@bluelightning.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst index fc7cb88238..6ccf58b212 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | |||
@@ -108,6 +108,17 @@ overview of their function and contents. | |||
108 | Specifies if SSL certificates should be checked when fetching. The default | 108 | Specifies if SSL certificates should be checked when fetching. The default |
109 | value is ``1`` and certificates are not checked if the value is set to ``0``. | 109 | value is ``1`` and certificates are not checked if the value is set to ``0``. |
110 | 110 | ||
111 | :term:`BB_HASH_CODEPARSER_VALS` | ||
112 | Specifies values for variables to use when populating the codeparser cache. | ||
113 | This can be used selectively to set dummy values for variables to avoid | ||
114 | the codeparser cache growing on every parse. Variables that would typically | ||
115 | be included are those where the value is not significant for where the | ||
116 | codeparser cache is used (i.e. when calculating variable dependencies for | ||
117 | code fragments.) The value is space-separated without quoting values, for | ||
118 | example:: | ||
119 | |||
120 | BB_HASH_CODEPARSER_VALS = "T=/ WORKDIR=/ DATE=1234 TIME=1234" | ||
121 | |||
111 | :term:`BB_CONSOLELOG` | 122 | :term:`BB_CONSOLELOG` |
112 | Specifies the path to a log file into which BitBake's user interface | 123 | Specifies the path to a log file into which BitBake's user interface |
113 | writes output during the build. | 124 | writes output during the build. |