Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1 | .. SPDX-License-Identifier: CC-BY-2.5 |
| 2 | |
| 3 | ==================== |
| 4 | Syntax and Operators |
| 5 | ==================== |
| 6 | |
| 7 | | |
| 8 | |
| 9 | BitBake files have their own syntax. The syntax has similarities to |
| 10 | several other languages but also has some unique features. This section |
| 11 | describes the available syntax and operators as well as provides |
| 12 | examples. |
| 13 | |
| 14 | Basic Syntax |
| 15 | ============ |
| 16 | |
| 17 | This section provides some basic syntax examples. |
| 18 | |
| 19 | Basic Variable Setting |
| 20 | ---------------------- |
| 21 | |
| 22 | The following example sets ``VARIABLE`` to "value". This assignment |
| 23 | occurs immediately as the statement is parsed. It is a "hard" |
| 24 | assignment. :: |
| 25 | |
| 26 | VARIABLE = "value" |
| 27 | |
| 28 | As expected, if you include leading or |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 29 | trailing spaces as part of an assignment, the spaces are retained:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 30 | |
| 31 | VARIABLE = " value" |
| 32 | VARIABLE = "value " |
| 33 | |
| 34 | Setting ``VARIABLE`` to "" sets |
| 35 | it to an empty string, while setting the variable to " " sets it to a |
| 36 | blank space (i.e. these are not the same values). :: |
| 37 | |
| 38 | VARIABLE = "" |
| 39 | VARIABLE = " " |
| 40 | |
| 41 | You can use single quotes instead of double quotes when setting a |
| 42 | variable's value. Doing so allows you to use values that contain the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 43 | double quote character:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 44 | |
| 45 | VARIABLE = 'I have a " in my value' |
| 46 | |
| 47 | .. note:: |
| 48 | |
| 49 | Unlike in Bourne shells, single quotes work identically to double |
| 50 | quotes in all other ways. They do not suppress variable expansions. |
| 51 | |
| 52 | Modifying Existing Variables |
| 53 | ---------------------------- |
| 54 | |
| 55 | Sometimes you need to modify existing variables. Following are some |
| 56 | cases where you might find you want to modify an existing variable: |
| 57 | |
| 58 | - Customize a recipe that uses the variable. |
| 59 | |
| 60 | - Change a variable's default value used in a ``*.bbclass`` file. |
| 61 | |
| 62 | - Change the variable in a ``*.bbappend`` file to override the variable |
| 63 | in the original recipe. |
| 64 | |
| 65 | - Change the variable in a configuration file so that the value |
| 66 | overrides an existing configuration. |
| 67 | |
| 68 | Changing a variable value can sometimes depend on how the value was |
| 69 | originally assigned and also on the desired intent of the change. In |
| 70 | particular, when you append a value to a variable that has a default |
| 71 | value, the resulting value might not be what you expect. In this case, |
| 72 | the value you provide might replace the value rather than append to the |
| 73 | default value. |
| 74 | |
| 75 | If after you have changed a variable's value and something unexplained |
| 76 | occurs, you can use BitBake to check the actual value of the suspect |
| 77 | variable. You can make these checks for both configuration and recipe |
| 78 | level changes: |
| 79 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 80 | - For configuration changes, use the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 81 | |
| 82 | $ bitbake -e |
| 83 | |
| 84 | This |
| 85 | command displays variable values after the configuration files (i.e. |
| 86 | ``local.conf``, ``bblayers.conf``, ``bitbake.conf`` and so forth) |
| 87 | have been parsed. |
| 88 | |
| 89 | .. note:: |
| 90 | |
| 91 | Variables that are exported to the environment are preceded by the |
| 92 | string "export" in the command's output. |
| 93 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 94 | - To find changes to a given variable in a specific recipe, use the |
| 95 | following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 96 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 97 | $ bitbake recipename -e | grep VARIABLENAME=\" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 98 | |
| 99 | This command checks to see if the variable actually makes |
| 100 | it into a specific recipe. |
| 101 | |
| 102 | Line Joining |
| 103 | ------------ |
| 104 | |
| 105 | Outside of :ref:`functions <bitbake-user-manual/bitbake-user-manual-metadata:functions>`, |
| 106 | BitBake joins any line ending in |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 107 | a backslash character ("\\") with the following line before parsing |
| 108 | statements. The most common use for the "\\" character is to split |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 109 | variable assignments over multiple lines, as in the following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 110 | |
| 111 | FOO = "bar \ |
| 112 | baz \ |
| 113 | qaz" |
| 114 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 115 | Both the "\\" character and the newline |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 116 | character that follow it are removed when joining lines. Thus, no |
| 117 | newline characters end up in the value of ``FOO``. |
| 118 | |
| 119 | Consider this additional example where the two assignments both assign |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 120 | "barbaz" to ``FOO``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 121 | |
| 122 | FOO = "barbaz" |
| 123 | FOO = "bar\ |
| 124 | baz" |
| 125 | |
| 126 | .. note:: |
| 127 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 128 | BitBake does not interpret escape sequences like "\\n" in variable |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 129 | values. For these to have an effect, the value must be passed to some |
| 130 | utility that interprets escape sequences, such as |
| 131 | ``printf`` or ``echo -n``. |
| 132 | |
| 133 | Variable Expansion |
| 134 | ------------------ |
| 135 | |
| 136 | Variables can reference the contents of other variables using a syntax |
| 137 | that is similar to variable expansion in Bourne shells. The following |
| 138 | assignments result in A containing "aval" and B evaluating to |
| 139 | "preavalpost". :: |
| 140 | |
| 141 | A = "aval" |
| 142 | B = "pre${A}post" |
| 143 | |
| 144 | .. note:: |
| 145 | |
| 146 | Unlike in Bourne shells, the curly braces are mandatory: Only ``${FOO}`` and not |
| 147 | ``$FOO`` is recognized as an expansion of ``FOO``. |
| 148 | |
| 149 | The "=" operator does not immediately expand variable references in the |
| 150 | right-hand side. Instead, expansion is deferred until the variable |
| 151 | assigned to is actually used. The result depends on the current values |
| 152 | of the referenced variables. The following example should clarify this |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 153 | behavior:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 154 | |
| 155 | A = "${B} baz" |
| 156 | B = "${C} bar" |
| 157 | C = "foo" |
| 158 | *At this point, ${A} equals "foo bar baz"* |
| 159 | C = "qux" |
| 160 | *At this point, ${A} equals "qux bar baz"* |
| 161 | B = "norf" |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 162 | *At this point, ${A} equals "norf baz"* |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 163 | |
| 164 | Contrast this behavior with the |
| 165 | :ref:`bitbake-user-manual/bitbake-user-manual-metadata:immediate variable |
| 166 | expansion (:=)` operator. |
| 167 | |
| 168 | If the variable expansion syntax is used on a variable that does not |
| 169 | exist, the string is kept as is. For example, given the following |
| 170 | assignment, ``BAR`` expands to the literal string "${FOO}" as long as |
| 171 | ``FOO`` does not exist. :: |
| 172 | |
| 173 | BAR = "${FOO}" |
| 174 | |
| 175 | Setting a default value (?=) |
| 176 | ---------------------------- |
| 177 | |
| 178 | You can use the "?=" operator to achieve a "softer" assignment for a |
| 179 | variable. This type of assignment allows you to define a variable if it |
| 180 | is undefined when the statement is parsed, but to leave the value alone |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 181 | if the variable has a value. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 182 | |
| 183 | A ?= "aval" |
| 184 | |
| 185 | If ``A`` is |
| 186 | set at the time this statement is parsed, the variable retains its |
| 187 | value. However, if ``A`` is not set, the variable is set to "aval". |
| 188 | |
| 189 | .. note:: |
| 190 | |
| 191 | This assignment is immediate. Consequently, if multiple "?=" |
| 192 | assignments to a single variable exist, the first of those ends up |
| 193 | getting used. |
| 194 | |
| 195 | Setting a weak default value (??=) |
| 196 | ---------------------------------- |
| 197 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 198 | The weak default value of a variable is the value which that variable |
| 199 | will expand to if no value has been assigned to it via any of the other |
| 200 | assignment operators. The "??=" operator takes effect immediately, replacing |
| 201 | any previously defined weak default value. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 202 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 203 | W ??= "x" |
| 204 | A := "${W}" # Immediate variable expansion |
| 205 | W ??= "y" |
| 206 | B := "${W}" # Immediate variable expansion |
| 207 | W ??= "z" |
| 208 | C = "${W}" |
| 209 | W ?= "i" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 210 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 211 | After parsing we will have:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 212 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 213 | A = "x" |
| 214 | B = "y" |
| 215 | C = "i" |
| 216 | W = "i" |
| 217 | |
| 218 | Appending and prepending non-override style will not substitute the weak |
| 219 | default value, which means that after parsing:: |
| 220 | |
| 221 | W ??= "x" |
| 222 | W += "y" |
| 223 | |
| 224 | we will have:: |
| 225 | |
| 226 | W = " y" |
| 227 | |
| 228 | On the other hand, override-style appends/prepends/removes are applied after |
| 229 | any active weak default value has been substituted:: |
| 230 | |
| 231 | W ??= "x" |
| 232 | W:append = "y" |
| 233 | |
| 234 | After parsing we will have:: |
| 235 | |
| 236 | W = "xy" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 237 | |
| 238 | Immediate variable expansion (:=) |
| 239 | --------------------------------- |
| 240 | |
| 241 | The ":=" operator results in a variable's contents being expanded |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 242 | immediately, rather than when the variable is actually used:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 243 | |
| 244 | T = "123" |
| 245 | A := "test ${T}" |
| 246 | T = "456" |
| 247 | B := "${T} ${C}" |
| 248 | C = "cval" |
| 249 | C := "${C}append" |
| 250 | |
| 251 | In this example, ``A`` contains "test 123", even though the final value |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 252 | of :term:`T` is "456". The variable :term:`B` will end up containing "456 |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 253 | cvalappend". This is because references to undefined variables are |
| 254 | preserved as is during (immediate)expansion. This is in contrast to GNU |
| 255 | Make, where undefined variables expand to nothing. The variable ``C`` |
| 256 | contains "cvalappend" since ``${C}`` immediately expands to "cval". |
| 257 | |
| 258 | .. _appending-and-prepending: |
| 259 | |
| 260 | Appending (+=) and prepending (=+) With Spaces |
| 261 | ---------------------------------------------- |
| 262 | |
| 263 | Appending and prepending values is common and can be accomplished using |
| 264 | the "+=" and "=+" operators. These operators insert a space between the |
| 265 | current value and prepended or appended value. |
| 266 | |
| 267 | These operators take immediate effect during parsing. Here are some |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 268 | examples:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 269 | |
| 270 | B = "bval" |
| 271 | B += "additionaldata" |
| 272 | C = "cval" |
| 273 | C =+ "test" |
| 274 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 275 | The variable :term:`B` contains "bval additionaldata" and ``C`` contains "test |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 276 | cval". |
| 277 | |
| 278 | .. _appending-and-prepending-without-spaces: |
| 279 | |
| 280 | Appending (.=) and Prepending (=.) Without Spaces |
| 281 | ------------------------------------------------- |
| 282 | |
| 283 | If you want to append or prepend values without an inserted space, use |
| 284 | the ".=" and "=." operators. |
| 285 | |
| 286 | These operators take immediate effect during parsing. Here are some |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 287 | examples:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 288 | |
| 289 | B = "bval" |
| 290 | B .= "additionaldata" |
| 291 | C = "cval" |
| 292 | C =. "test" |
| 293 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 294 | The variable :term:`B` contains "bvaladditionaldata" and ``C`` contains |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 295 | "testcval". |
| 296 | |
| 297 | Appending and Prepending (Override Style Syntax) |
| 298 | ------------------------------------------------ |
| 299 | |
| 300 | You can also append and prepend a variable's value using an override |
| 301 | style syntax. When you use this syntax, no spaces are inserted. |
| 302 | |
| 303 | These operators differ from the ":=", ".=", "=.", "+=", and "=+" |
| 304 | operators in that their effects are applied at variable expansion time |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 305 | rather than being immediately applied. Here are some examples:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 306 | |
| 307 | B = "bval" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 308 | B:append = " additional data" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 309 | C = "cval" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 310 | C:prepend = "additional data " |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 311 | D = "dval" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 312 | D:append = "additional data" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 313 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 314 | The variable :term:`B` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 315 | becomes "bval additional data" and ``C`` becomes "additional data cval". |
| 316 | The variable ``D`` becomes "dvaladditional data". |
| 317 | |
| 318 | .. note:: |
| 319 | |
| 320 | You must control all spacing when you use the override syntax. |
| 321 | |
| 322 | It is also possible to append and prepend to shell functions and |
| 323 | BitBake-style Python functions. See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:shell functions`" and ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:bitbake-style python functions`" |
| 324 | sections for examples. |
| 325 | |
| 326 | .. _removing-override-style-syntax: |
| 327 | |
| 328 | Removal (Override Style Syntax) |
| 329 | ------------------------------- |
| 330 | |
| 331 | You can remove values from lists using the removal override style |
| 332 | syntax. Specifying a value for removal causes all occurrences of that |
| 333 | value to be removed from the variable. |
| 334 | |
| 335 | When you use this syntax, BitBake expects one or more strings. |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 336 | Surrounding spaces and spacing are preserved. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 337 | |
| 338 | FOO = "123 456 789 123456 123 456 123 456" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 339 | FOO:remove = "123" |
| 340 | FOO:remove = "456" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 341 | FOO2 = " abc def ghi abcdef abc def abc def def" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 342 | FOO2:remove = "\ |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 343 | def \ |
| 344 | abc \ |
| 345 | ghi \ |
| 346 | " |
| 347 | |
| 348 | The variable ``FOO`` becomes |
| 349 | " 789 123456 " and ``FOO2`` becomes " abcdef ". |
| 350 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 351 | Like ":append" and ":prepend", ":remove" is applied at variable |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 352 | expansion time. |
| 353 | |
| 354 | Override Style Operation Advantages |
| 355 | ----------------------------------- |
| 356 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 357 | An advantage of the override style operations ":append", ":prepend", and |
| 358 | ":remove" as compared to the "+=" and "=+" operators is that the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 359 | override style operators provide guaranteed operations. For example, |
| 360 | consider a class ``foo.bbclass`` that needs to add the value "val" to |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 361 | the variable ``FOO``, and a recipe that uses ``foo.bbclass`` as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 362 | |
| 363 | inherit foo |
| 364 | FOO = "initial" |
| 365 | |
| 366 | If ``foo.bbclass`` uses the "+=" operator, |
| 367 | as follows, then the final value of ``FOO`` will be "initial", which is |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 368 | not what is desired:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 369 | |
| 370 | FOO += "val" |
| 371 | |
| 372 | If, on the other hand, ``foo.bbclass`` |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 373 | uses the ":append" operator, then the final value of ``FOO`` will be |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 374 | "initial val", as intended:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 375 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 376 | FOO:append = " val" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 377 | |
| 378 | .. note:: |
| 379 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 380 | It is never necessary to use "+=" together with ":append". The following |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 381 | sequence of assignments appends "barbaz" to FOO:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 382 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 383 | FOO:append = "bar" |
| 384 | FOO:append = "baz" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 385 | |
| 386 | |
| 387 | The only effect of changing the second assignment in the previous |
| 388 | example to use "+=" would be to add a space before "baz" in the |
| 389 | appended value (due to how the "+=" operator works). |
| 390 | |
| 391 | Another advantage of the override style operations is that you can |
| 392 | combine them with other overrides as described in the |
| 393 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:conditional syntax (overrides)`" section. |
| 394 | |
| 395 | Variable Flag Syntax |
| 396 | -------------------- |
| 397 | |
| 398 | Variable flags are BitBake's implementation of variable properties or |
| 399 | attributes. It is a way of tagging extra information onto a variable. |
| 400 | You can find more out about variable flags in general in the |
| 401 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section. |
| 402 | |
| 403 | You can define, append, and prepend values to variable flags. All the |
| 404 | standard syntax operations previously mentioned work for variable flags |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 405 | except for override style syntax (i.e. ":prepend", ":append", and |
| 406 | ":remove"). |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 407 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 408 | Here are some examples showing how to set variable flags:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 409 | |
| 410 | FOO[a] = "abc" |
| 411 | FOO[b] = "123" |
| 412 | FOO[a] += "456" |
| 413 | |
| 414 | The variable ``FOO`` has two flags: |
| 415 | ``[a]`` and ``[b]``. The flags are immediately set to "abc" and "123", |
| 416 | respectively. The ``[a]`` flag becomes "abc 456". |
| 417 | |
| 418 | No need exists to pre-define variable flags. You can simply start using |
| 419 | them. One extremely common application is to attach some brief |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 420 | documentation to a BitBake variable as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 421 | |
| 422 | CACHE[doc] = "The directory holding the cache of the metadata." |
| 423 | |
| 424 | Inline Python Variable Expansion |
| 425 | -------------------------------- |
| 426 | |
| 427 | You can use inline Python variable expansion to set variables. Here is |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 428 | an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 429 | |
| 430 | DATE = "${@time.strftime('%Y%m%d',time.gmtime())}" |
| 431 | |
| 432 | This example results in the ``DATE`` variable being set to the current date. |
| 433 | |
| 434 | Probably the most common use of this feature is to extract the value of |
| 435 | variables from BitBake's internal data dictionary, ``d``. The following |
| 436 | lines select the values of a package name and its version number, |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 437 | respectively:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 438 | |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 439 | PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0] or 'defaultpkgname'}" |
| 440 | PV = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[1] or '1.0'}" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 441 | |
| 442 | .. note:: |
| 443 | |
| 444 | Inline Python expressions work just like variable expansions insofar as the |
| 445 | "=" and ":=" operators are concerned. Given the following assignment, foo() |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 446 | is called each time FOO is expanded:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 447 | |
| 448 | FOO = "${@foo()}" |
| 449 | |
| 450 | Contrast this with the following immediate assignment, where foo() is only |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 451 | called once, while the assignment is parsed:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 452 | |
| 453 | FOO := "${@foo()}" |
| 454 | |
| 455 | For a different way to set variables with Python code during parsing, |
| 456 | see the |
| 457 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:anonymous python functions`" section. |
| 458 | |
| 459 | Unsetting variables |
| 460 | ------------------- |
| 461 | |
| 462 | It is possible to completely remove a variable or a variable flag from |
| 463 | BitBake's internal data dictionary by using the "unset" keyword. Here is |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 464 | an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 465 | |
| 466 | unset DATE |
| 467 | unset do_fetch[noexec] |
| 468 | |
| 469 | These two statements remove the ``DATE`` and the ``do_fetch[noexec]`` flag. |
| 470 | |
| 471 | Providing Pathnames |
| 472 | ------------------- |
| 473 | |
| 474 | When specifying pathnames for use with BitBake, do not use the tilde |
| 475 | ("~") character as a shortcut for your home directory. Doing so might |
| 476 | cause BitBake to not recognize the path since BitBake does not expand |
| 477 | this character in the same way a shell would. |
| 478 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 479 | Instead, provide a fuller path as the following example illustrates:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 480 | |
| 481 | BBLAYERS ?= " \ |
| 482 | /home/scott-lenovo/LayerA \ |
| 483 | " |
| 484 | |
| 485 | Exporting Variables to the Environment |
| 486 | ====================================== |
| 487 | |
| 488 | You can export variables to the environment of running tasks by using |
| 489 | the ``export`` keyword. For example, in the following example, the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 490 | ``do_foo`` task prints "value from the environment" when run:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 491 | |
| 492 | export ENV_VARIABLE |
| 493 | ENV_VARIABLE = "value from the environment" |
| 494 | |
| 495 | do_foo() { |
| 496 | bbplain "$ENV_VARIABLE" |
| 497 | } |
| 498 | |
| 499 | .. note:: |
| 500 | |
| 501 | BitBake does not expand ``$ENV_VARIABLE`` in this case because it lacks the |
| 502 | obligatory ``{}`` . Rather, ``$ENV_VARIABLE`` is expanded by the shell. |
| 503 | |
| 504 | It does not matter whether ``export ENV_VARIABLE`` appears before or |
| 505 | after assignments to ``ENV_VARIABLE``. |
| 506 | |
| 507 | It is also possible to combine ``export`` with setting a value for the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 508 | variable. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 509 | |
| 510 | export ENV_VARIABLE = "variable-value" |
| 511 | |
| 512 | In the output of ``bitbake -e``, variables that are exported to the |
| 513 | environment are preceded by "export". |
| 514 | |
| 515 | Among the variables commonly exported to the environment are ``CC`` and |
| 516 | ``CFLAGS``, which are picked up by many build systems. |
| 517 | |
| 518 | Conditional Syntax (Overrides) |
| 519 | ============================== |
| 520 | |
| 521 | BitBake uses :term:`OVERRIDES` to control what |
| 522 | variables are overridden after BitBake parses recipes and configuration |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 523 | files. This section describes how you can use :term:`OVERRIDES` as |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 524 | conditional metadata, talks about key expansion in relationship to |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 525 | :term:`OVERRIDES`, and provides some examples to help with understanding. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 526 | |
| 527 | Conditional Metadata |
| 528 | -------------------- |
| 529 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 530 | You can use :term:`OVERRIDES` to conditionally select a specific version of |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 531 | a variable and to conditionally append or prepend the value of a |
| 532 | variable. |
| 533 | |
| 534 | .. note:: |
| 535 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 536 | Overrides can only use lower-case characters, digits and dashes. |
| 537 | In particular, colons are not permitted in override names as they are used to |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 538 | separate overrides from each other and from the variable name. |
| 539 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 540 | - *Selecting a Variable:* The :term:`OVERRIDES` variable is a |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 541 | colon-character-separated list that contains items for which you want |
| 542 | to satisfy conditions. Thus, if you have a variable that is |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 543 | conditional on "arm", and "arm" is in :term:`OVERRIDES`, then the |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 544 | "arm"-specific version of the variable is used rather than the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 545 | non-conditional version. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 546 | |
| 547 | OVERRIDES = "architecture:os:machine" |
| 548 | TEST = "default" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 549 | TEST:os = "osspecific" |
| 550 | TEST:nooverride = "othercondvalue" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 551 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 552 | In this example, the :term:`OVERRIDES` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 553 | variable lists three overrides: "architecture", "os", and "machine". |
| 554 | The variable ``TEST`` by itself has a default value of "default". You |
| 555 | select the os-specific version of the ``TEST`` variable by appending |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 556 | the "os" override to the variable (i.e. ``TEST:os``). |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 557 | |
| 558 | To better understand this, consider a practical example that assumes |
| 559 | an OpenEmbedded metadata-based Linux kernel recipe file. The |
| 560 | following lines from the recipe file first set the kernel branch |
| 561 | variable ``KBRANCH`` to a default value, then conditionally override |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 562 | that value based on the architecture of the build:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 563 | |
| 564 | KBRANCH = "standard/base" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 565 | KBRANCH:qemuarm = "standard/arm-versatile-926ejs" |
| 566 | KBRANCH:qemumips = "standard/mti-malta32" |
| 567 | KBRANCH:qemuppc = "standard/qemuppc" |
| 568 | KBRANCH:qemux86 = "standard/common-pc/base" |
| 569 | KBRANCH:qemux86-64 = "standard/common-pc-64/base" |
| 570 | KBRANCH:qemumips64 = "standard/mti-malta64" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 571 | |
| 572 | - *Appending and Prepending:* BitBake also supports append and prepend |
| 573 | operations to variable values based on whether a specific item is |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 574 | listed in :term:`OVERRIDES`. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 575 | |
| 576 | DEPENDS = "glibc ncurses" |
| 577 | OVERRIDES = "machine:local" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 578 | DEPENDS:append:machine = "libmad" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 579 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 580 | In this example, :term:`DEPENDS` becomes "glibc ncurses libmad". |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 581 | |
| 582 | Again, using an OpenEmbedded metadata-based kernel recipe file as an |
| 583 | example, the following lines will conditionally append to the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 584 | ``KERNEL_FEATURES`` variable based on the architecture:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 585 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 586 | KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" |
| 587 | KERNEL_FEATURES:append:qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" |
| 588 | KERNEL_FEATURES:append:qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 589 | |
| 590 | - *Setting a Variable for a Single Task:* BitBake supports setting a |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 591 | variable just for the duration of a single task. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 592 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 593 | FOO:task-configure = "val 1" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 594 | FOO:task-compile = "val 2" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 595 | |
| 596 | In the |
| 597 | previous example, ``FOO`` has the value "val 1" while the |
| 598 | ``do_configure`` task is executed, and the value "val 2" while the |
| 599 | ``do_compile`` task is executed. |
| 600 | |
| 601 | Internally, this is implemented by prepending the task (e.g. |
| 602 | "task-compile:") to the value of |
| 603 | :term:`OVERRIDES` for the local datastore of the |
| 604 | ``do_compile`` task. |
| 605 | |
| 606 | You can also use this syntax with other combinations (e.g. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 607 | "``:prepend``") as shown in the following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 608 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 609 | EXTRA_OEMAKE:prepend:task-compile = "${PARALLEL_MAKE} " |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 610 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 611 | .. note:: |
| 612 | |
| 613 | Before BitBake 1.52 (Honister 3.4), the syntax for :term:`OVERRIDES` |
| 614 | used ``_`` instead of ``:``, so you will still find a lot of documentation |
| 615 | using ``_append``, ``_prepend``, and ``_remove``, for example. |
| 616 | |
| 617 | For details, see the |
| 618 | :yocto_docs:`Overrides Syntax Changes </migration-guides/migration-3.4.html#override-syntax-changes>` |
| 619 | section in the Yocto Project manual migration notes. |
| 620 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 621 | Key Expansion |
| 622 | ------------- |
| 623 | |
| 624 | Key expansion happens when the BitBake datastore is finalized. To better |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 625 | understand this, consider the following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 626 | |
| 627 | A${B} = "X" |
| 628 | B = "2" |
| 629 | A2 = "Y" |
| 630 | |
| 631 | In this case, after all the parsing is complete, BitBake expands |
| 632 | ``${B}`` into "2". This expansion causes ``A2``, which was set to "Y" |
| 633 | before the expansion, to become "X". |
| 634 | |
| 635 | .. _variable-interaction-worked-examples: |
| 636 | |
| 637 | Examples |
| 638 | -------- |
| 639 | |
| 640 | Despite the previous explanations that show the different forms of |
| 641 | variable definitions, it can be hard to work out exactly what happens |
| 642 | when variable operators, conditional overrides, and unconditional |
| 643 | overrides are combined. This section presents some common scenarios |
| 644 | along with explanations for variable interactions that typically confuse |
| 645 | users. |
| 646 | |
| 647 | There is often confusion concerning the order in which overrides and |
| 648 | various "append" operators take effect. Recall that an append or prepend |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 649 | operation using ":append" and ":prepend" does not result in an immediate |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 650 | assignment as would "+=", ".=", "=+", or "=.". Consider the following |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 651 | example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 652 | |
| 653 | OVERRIDES = "foo" |
| 654 | A = "Z" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 655 | A:foo:append = "X" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 656 | |
| 657 | For this case, |
| 658 | ``A`` is unconditionally set to "Z" and "X" is unconditionally and |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 659 | immediately appended to the variable ``A:foo``. Because overrides have |
| 660 | not been applied yet, ``A:foo`` is set to "X" due to the append and |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 661 | ``A`` simply equals "Z". |
| 662 | |
| 663 | Applying overrides, however, changes things. Since "foo" is listed in |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 664 | :term:`OVERRIDES`, the conditional variable ``A`` is replaced with the "foo" |
| 665 | version, which is equal to "X". So effectively, ``A:foo`` replaces |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 666 | ``A``. |
| 667 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 668 | This next example changes the order of the override and the append:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 669 | |
| 670 | OVERRIDES = "foo" |
| 671 | A = "Z" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 672 | A:append:foo = "X" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 673 | |
| 674 | For this case, before |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 675 | overrides are handled, ``A`` is set to "Z" and ``A:append:foo`` is set |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 676 | to "X". Once the override for "foo" is applied, however, ``A`` gets |
| 677 | appended with "X". Consequently, ``A`` becomes "ZX". Notice that spaces |
| 678 | are not appended. |
| 679 | |
| 680 | This next example has the order of the appends and overrides reversed |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 681 | back as in the first example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 682 | |
| 683 | OVERRIDES = "foo" |
| 684 | A = "Y" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 685 | A:foo:append = "Z" |
| 686 | A:foo:append = "X" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 687 | |
| 688 | For this case, before any overrides are resolved, |
| 689 | ``A`` is set to "Y" using an immediate assignment. After this immediate |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 690 | assignment, ``A:foo`` is set to "Z", and then further appended with "X" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 691 | leaving the variable set to "ZX". Finally, applying the override for |
| 692 | "foo" results in the conditional variable ``A`` becoming "ZX" (i.e. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 693 | ``A`` is replaced with ``A:foo``). |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 694 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 695 | This final example mixes in some varying operators:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 696 | |
| 697 | A = "1" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 698 | A:append = "2" |
| 699 | A:append = "3" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 700 | A += "4" |
| 701 | A .= "5" |
| 702 | |
| 703 | For this case, the type of append |
| 704 | operators are affecting the order of assignments as BitBake passes |
| 705 | through the code multiple times. Initially, ``A`` is set to "1 45" |
| 706 | because of the three statements that use immediate operators. After |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 707 | these assignments are made, BitBake applies the ":append" operations. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 708 | Those operations result in ``A`` becoming "1 4523". |
| 709 | |
| 710 | Sharing Functionality |
| 711 | ===================== |
| 712 | |
| 713 | BitBake allows for metadata sharing through include files (``.inc``) and |
| 714 | class files (``.bbclass``). For example, suppose you have a piece of |
| 715 | common functionality such as a task definition that you want to share |
| 716 | between more than one recipe. In this case, creating a ``.bbclass`` file |
| 717 | that contains the common functionality and then using the ``inherit`` |
| 718 | directive in your recipes to inherit the class would be a common way to |
| 719 | share the task. |
| 720 | |
| 721 | This section presents the mechanisms BitBake provides to allow you to |
| 722 | share functionality between recipes. Specifically, the mechanisms |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 723 | include ``include``, ``inherit``, :term:`INHERIT`, and ``require`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 724 | directives. |
| 725 | |
| 726 | Locating Include and Class Files |
| 727 | -------------------------------- |
| 728 | |
| 729 | BitBake uses the :term:`BBPATH` variable to locate |
| 730 | needed include and class files. Additionally, BitBake searches the |
| 731 | current directory for ``include`` and ``require`` directives. |
| 732 | |
| 733 | .. note:: |
| 734 | |
| 735 | The BBPATH variable is analogous to the environment variable PATH . |
| 736 | |
| 737 | In order for include and class files to be found by BitBake, they need |
| 738 | to be located in a "classes" subdirectory that can be found in |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 739 | :term:`BBPATH`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 740 | |
| 741 | ``inherit`` Directive |
| 742 | --------------------- |
| 743 | |
| 744 | When writing a recipe or class file, you can use the ``inherit`` |
| 745 | directive to inherit the functionality of a class (``.bbclass``). |
| 746 | BitBake only supports this directive when used within recipe and class |
| 747 | files (i.e. ``.bb`` and ``.bbclass``). |
| 748 | |
| 749 | The ``inherit`` directive is a rudimentary means of specifying |
| 750 | functionality contained in class files that your recipes require. For |
| 751 | example, you can easily abstract out the tasks involved in building a |
| 752 | package that uses Autoconf and Automake and put those tasks into a class |
| 753 | file and then have your recipe inherit that class file. |
| 754 | |
| 755 | As an example, your recipes could use the following directive to inherit |
| 756 | an ``autotools.bbclass`` file. The class file would contain common |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 757 | functionality for using Autotools that could be shared across recipes:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 758 | |
| 759 | inherit autotools |
| 760 | |
| 761 | In this case, BitBake would search for the directory |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 762 | ``classes/autotools.bbclass`` in :term:`BBPATH`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 763 | |
| 764 | .. note:: |
| 765 | |
| 766 | You can override any values and functions of the inherited class |
| 767 | within your recipe by doing so after the "inherit" statement. |
| 768 | |
| 769 | If you want to use the directive to inherit multiple classes, separate |
| 770 | them with spaces. The following example shows how to inherit both the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 771 | ``buildhistory`` and ``rm_work`` classes:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 772 | |
| 773 | inherit buildhistory rm_work |
| 774 | |
| 775 | An advantage with the inherit directive as compared to both the |
| 776 | :ref:`include <bitbake-user-manual/bitbake-user-manual-metadata:\`\`include\`\` directive>` and :ref:`require <bitbake-user-manual/bitbake-user-manual-metadata:\`\`require\`\` directive>` |
| 777 | directives is that you can inherit class files conditionally. You can |
| 778 | accomplish this by using a variable expression after the ``inherit`` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 779 | statement. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 780 | |
| 781 | inherit ${VARNAME} |
| 782 | |
| 783 | If ``VARNAME`` is |
| 784 | going to be set, it needs to be set before the ``inherit`` statement is |
| 785 | parsed. One way to achieve a conditional inherit in this case is to use |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 786 | overrides:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 787 | |
| 788 | VARIABLE = "" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 789 | VARIABLE:someoverride = "myclass" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 790 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 791 | Another method is by using anonymous Python. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 792 | |
| 793 | python () { |
| 794 | if condition == value: |
| 795 | d.setVar('VARIABLE', 'myclass') |
| 796 | else: |
| 797 | d.setVar('VARIABLE', '') |
| 798 | } |
| 799 | |
| 800 | Alternatively, you could use an in-line Python expression in the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 801 | following form:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 802 | |
| 803 | inherit ${@'classname' if condition else ''} |
| 804 | inherit ${@functionname(params)} |
| 805 | |
| 806 | In all cases, if the expression evaluates to an |
| 807 | empty string, the statement does not trigger a syntax error because it |
| 808 | becomes a no-op. |
| 809 | |
| 810 | ``include`` Directive |
| 811 | --------------------- |
| 812 | |
| 813 | BitBake understands the ``include`` directive. This directive causes |
| 814 | BitBake to parse whatever file you specify, and to insert that file at |
| 815 | that location. The directive is much like its equivalent in Make except |
| 816 | that if the path specified on the include line is a relative path, |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 817 | BitBake locates the first file it can find within :term:`BBPATH`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 818 | |
| 819 | The include directive is a more generic method of including |
| 820 | functionality as compared to the :ref:`inherit <bitbake-user-manual/bitbake-user-manual-metadata:\`\`inherit\`\` directive>` |
| 821 | directive, which is restricted to class (i.e. ``.bbclass``) files. The |
| 822 | include directive is applicable for any other kind of shared or |
| 823 | encapsulated functionality or configuration that does not suit a |
| 824 | ``.bbclass`` file. |
| 825 | |
| 826 | As an example, suppose you needed a recipe to include some self-test |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 827 | definitions:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 828 | |
| 829 | include test_defs.inc |
| 830 | |
| 831 | .. note:: |
| 832 | |
| 833 | The include directive does not produce an error when the file cannot be |
| 834 | found. Consequently, it is recommended that if the file you are including is |
| 835 | expected to exist, you should use :ref:`require <require-inclusion>` instead |
| 836 | of include . Doing so makes sure that an error is produced if the file cannot |
| 837 | be found. |
| 838 | |
| 839 | .. _require-inclusion: |
| 840 | |
| 841 | ``require`` Directive |
| 842 | --------------------- |
| 843 | |
| 844 | BitBake understands the ``require`` directive. This directive behaves |
| 845 | just like the ``include`` directive with the exception that BitBake |
| 846 | raises a parsing error if the file to be included cannot be found. Thus, |
| 847 | any file you require is inserted into the file that is being parsed at |
| 848 | the location of the directive. |
| 849 | |
| 850 | The require directive, like the include directive previously described, |
| 851 | is a more generic method of including functionality as compared to the |
| 852 | :ref:`inherit <bitbake-user-manual/bitbake-user-manual-metadata:\`\`inherit\`\` directive>` directive, which is restricted to class |
| 853 | (i.e. ``.bbclass``) files. The require directive is applicable for any |
| 854 | other kind of shared or encapsulated functionality or configuration that |
| 855 | does not suit a ``.bbclass`` file. |
| 856 | |
| 857 | Similar to how BitBake handles :ref:`include <bitbake-user-manual/bitbake-user-manual-metadata:\`\`include\`\` directive>`, if |
| 858 | the path specified on the require line is a relative path, BitBake |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 859 | locates the first file it can find within :term:`BBPATH`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 860 | |
| 861 | As an example, suppose you have two versions of a recipe (e.g. |
| 862 | ``foo_1.2.2.bb`` and ``foo_2.0.0.bb``) where each version contains some |
| 863 | identical functionality that could be shared. You could create an |
| 864 | include file named ``foo.inc`` that contains the common definitions |
| 865 | needed to build "foo". You need to be sure ``foo.inc`` is located in the |
| 866 | same directory as your two recipe files as well. Once these conditions |
| 867 | are set up, you can share the functionality using a ``require`` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 868 | directive from within each recipe:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 869 | |
| 870 | require foo.inc |
| 871 | |
| 872 | ``INHERIT`` Configuration Directive |
| 873 | ----------------------------------- |
| 874 | |
| 875 | When creating a configuration file (``.conf``), you can use the |
| 876 | :term:`INHERIT` configuration directive to inherit a |
| 877 | class. BitBake only supports this directive when used within a |
| 878 | configuration file. |
| 879 | |
| 880 | As an example, suppose you needed to inherit a class file called |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 881 | ``abc.bbclass`` from a configuration file as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 882 | |
| 883 | INHERIT += "abc" |
| 884 | |
| 885 | This configuration directive causes the named class to be inherited at |
| 886 | the point of the directive during parsing. As with the ``inherit`` |
| 887 | directive, the ``.bbclass`` file must be located in a "classes" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 888 | subdirectory in one of the directories specified in :term:`BBPATH`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 889 | |
| 890 | .. note:: |
| 891 | |
| 892 | Because .conf files are parsed first during BitBake's execution, using |
| 893 | INHERIT to inherit a class effectively inherits the class globally (i.e. for |
| 894 | all recipes). |
| 895 | |
| 896 | If you want to use the directive to inherit multiple classes, you can |
| 897 | provide them on the same line in the ``local.conf`` file. Use spaces to |
| 898 | separate the classes. The following example shows how to inherit both |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 899 | the ``autotools`` and ``pkgconfig`` classes:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 900 | |
| 901 | INHERIT += "autotools pkgconfig" |
| 902 | |
| 903 | Functions |
| 904 | ========= |
| 905 | |
| 906 | As with most languages, functions are the building blocks that are used |
| 907 | to build up operations into tasks. BitBake supports these types of |
| 908 | functions: |
| 909 | |
| 910 | - *Shell Functions:* Functions written in shell script and executed |
| 911 | either directly as functions, tasks, or both. They can also be called |
| 912 | by other shell functions. |
| 913 | |
| 914 | - *BitBake-Style Python Functions:* Functions written in Python and |
| 915 | executed by BitBake or other Python functions using |
| 916 | ``bb.build.exec_func()``. |
| 917 | |
| 918 | - *Python Functions:* Functions written in Python and executed by |
| 919 | Python. |
| 920 | |
| 921 | - *Anonymous Python Functions:* Python functions executed automatically |
| 922 | during parsing. |
| 923 | |
| 924 | Regardless of the type of function, you can only define them in class |
| 925 | (``.bbclass``) and recipe (``.bb`` or ``.inc``) files. |
| 926 | |
| 927 | Shell Functions |
| 928 | --------------- |
| 929 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 930 | Functions written in shell script are executed either directly as |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 931 | functions, tasks, or both. They can also be called by other shell |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 932 | functions. Here is an example shell function definition:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 933 | |
| 934 | some_function () { |
| 935 | echo "Hello World" |
| 936 | } |
| 937 | |
| 938 | When you create these types of functions in |
| 939 | your recipe or class files, you need to follow the shell programming |
| 940 | rules. The scripts are executed by ``/bin/sh``, which may not be a bash |
| 941 | shell but might be something such as ``dash``. You should not use |
| 942 | Bash-specific script (bashisms). |
| 943 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 944 | Overrides and override-style operators like ``:append`` and ``:prepend`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 945 | can also be applied to shell functions. Most commonly, this application |
| 946 | would be used in a ``.bbappend`` file to modify functions in the main |
| 947 | recipe. It can also be used to modify functions inherited from classes. |
| 948 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 949 | As an example, consider the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 950 | |
| 951 | do_foo() { |
| 952 | bbplain first |
| 953 | fn |
| 954 | } |
| 955 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 956 | fn:prepend() { |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 957 | bbplain second |
| 958 | } |
| 959 | |
| 960 | fn() { |
| 961 | bbplain third |
| 962 | } |
| 963 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 964 | do_foo:append() { |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 965 | bbplain fourth |
| 966 | } |
| 967 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 968 | Running ``do_foo`` prints the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 969 | |
| 970 | recipename do_foo: first |
| 971 | recipename do_foo: second |
| 972 | recipename do_foo: third |
| 973 | recipename do_foo: fourth |
| 974 | |
| 975 | .. note:: |
| 976 | |
| 977 | Overrides and override-style operators can be applied to any shell |
| 978 | function, not just :ref:`tasks <bitbake-user-manual/bitbake-user-manual-metadata:tasks>`. |
| 979 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 980 | You can use the ``bitbake -e recipename`` command to view the final |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 981 | assembled function after all overrides have been applied. |
| 982 | |
| 983 | BitBake-Style Python Functions |
| 984 | ------------------------------ |
| 985 | |
| 986 | These functions are written in Python and executed by BitBake or other |
| 987 | Python functions using ``bb.build.exec_func()``. |
| 988 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 989 | An example BitBake function is:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 990 | |
| 991 | python some_python_function () { |
| 992 | d.setVar("TEXT", "Hello World") |
| 993 | print d.getVar("TEXT") |
| 994 | } |
| 995 | |
| 996 | Because the |
| 997 | Python "bb" and "os" modules are already imported, you do not need to |
| 998 | import these modules. Also in these types of functions, the datastore |
| 999 | ("d") is a global variable and is always automatically available. |
| 1000 | |
| 1001 | .. note:: |
| 1002 | |
| 1003 | Variable expressions (e.g. ``${X}`` ) are no longer expanded within Python |
| 1004 | functions. This behavior is intentional in order to allow you to freely set |
| 1005 | variable values to expandable expressions without having them expanded |
| 1006 | prematurely. If you do wish to expand a variable within a Python function, |
| 1007 | use ``d.getVar("X")`` . Or, for more complicated expressions, use ``d.expand()``. |
| 1008 | |
| 1009 | Similar to shell functions, you can also apply overrides and |
| 1010 | override-style operators to BitBake-style Python functions. |
| 1011 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1012 | As an example, consider the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1013 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1014 | python do_foo:prepend() { |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1015 | bb.plain("first") |
| 1016 | } |
| 1017 | |
| 1018 | python do_foo() { |
| 1019 | bb.plain("second") |
| 1020 | } |
| 1021 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1022 | python do_foo:append() { |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1023 | bb.plain("third") |
| 1024 | } |
| 1025 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1026 | Running ``do_foo`` prints the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1027 | |
| 1028 | recipename do_foo: first |
| 1029 | recipename do_foo: second |
| 1030 | recipename do_foo: third |
| 1031 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1032 | You can use the ``bitbake -e recipename`` command to view |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1033 | the final assembled function after all overrides have been applied. |
| 1034 | |
| 1035 | Python Functions |
| 1036 | ---------------- |
| 1037 | |
| 1038 | These functions are written in Python and are executed by other Python |
| 1039 | code. Examples of Python functions are utility functions that you intend |
| 1040 | to call from in-line Python or from within other Python functions. Here |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1041 | is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1042 | |
| 1043 | def get_depends(d): |
| 1044 | if d.getVar('SOMECONDITION'): |
| 1045 | return "dependencywithcond" |
| 1046 | else: |
| 1047 | return "dependency" |
| 1048 | |
| 1049 | SOMECONDITION = "1" |
| 1050 | DEPENDS = "${@get_depends(d)}" |
| 1051 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1052 | This would result in :term:`DEPENDS` containing ``dependencywithcond``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1053 | |
| 1054 | Here are some things to know about Python functions: |
| 1055 | |
| 1056 | - Python functions can take parameters. |
| 1057 | |
| 1058 | - The BitBake datastore is not automatically available. Consequently, |
| 1059 | you must pass it in as a parameter to the function. |
| 1060 | |
| 1061 | - The "bb" and "os" Python modules are automatically available. You do |
| 1062 | not need to import them. |
| 1063 | |
| 1064 | BitBake-Style Python Functions Versus Python Functions |
| 1065 | ------------------------------------------------------ |
| 1066 | |
| 1067 | Following are some important differences between BitBake-style Python |
| 1068 | functions and regular Python functions defined with "def": |
| 1069 | |
| 1070 | - Only BitBake-style Python functions can be :ref:`tasks <bitbake-user-manual/bitbake-user-manual-metadata:tasks>`. |
| 1071 | |
| 1072 | - Overrides and override-style operators can only be applied to |
| 1073 | BitBake-style Python functions. |
| 1074 | |
| 1075 | - Only regular Python functions can take arguments and return values. |
| 1076 | |
| 1077 | - :ref:`Variable flags <bitbake-user-manual/bitbake-user-manual-metadata:variable flags>` such as |
| 1078 | ``[dirs]``, ``[cleandirs]``, and ``[lockfiles]`` can be used on BitBake-style |
| 1079 | Python functions, but not on regular Python functions. |
| 1080 | |
| 1081 | - BitBake-style Python functions generate a separate |
| 1082 | ``${``\ :term:`T`\ ``}/run.``\ function-name\ ``.``\ pid |
| 1083 | script that is executed to run the function, and also generate a log |
| 1084 | file in ``${T}/log.``\ function-name\ ``.``\ pid if they are executed |
| 1085 | as tasks. |
| 1086 | |
| 1087 | Regular Python functions execute "inline" and do not generate any |
| 1088 | files in ``${T}``. |
| 1089 | |
| 1090 | - Regular Python functions are called with the usual Python syntax. |
| 1091 | BitBake-style Python functions are usually tasks and are called |
| 1092 | directly by BitBake, but can also be called manually from Python code |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1093 | by using the ``bb.build.exec_func()`` function. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1094 | |
| 1095 | bb.build.exec_func("my_bitbake_style_function", d) |
| 1096 | |
| 1097 | .. note:: |
| 1098 | |
| 1099 | ``bb.build.exec_func()`` can also be used to run shell functions from Python |
| 1100 | code. If you want to run a shell function before a Python function within |
| 1101 | the same task, then you can use a parent helper Python function that |
| 1102 | starts by running the shell function with ``bb.build.exec_func()`` and then |
| 1103 | runs the Python code. |
| 1104 | |
| 1105 | To detect errors from functions executed with |
| 1106 | ``bb.build.exec_func()``, you can catch the ``bb.build.FuncFailed`` |
| 1107 | exception. |
| 1108 | |
| 1109 | .. note:: |
| 1110 | |
| 1111 | Functions in metadata (recipes and classes) should not themselves raise |
| 1112 | ``bb.build.FuncFailed``. Rather, ``bb.build.FuncFailed`` should be viewed as a |
| 1113 | general indicator that the called function failed by raising an |
| 1114 | exception. For example, an exception raised by ``bb.fatal()`` will be caught |
| 1115 | inside ``bb.build.exec_func()``, and a ``bb.build.FuncFailed`` will be raised in |
| 1116 | response. |
| 1117 | |
| 1118 | Due to their simplicity, you should prefer regular Python functions over |
| 1119 | BitBake-style Python functions unless you need a feature specific to |
| 1120 | BitBake-style Python functions. Regular Python functions in metadata are |
| 1121 | a more recent invention than BitBake-style Python functions, and older |
| 1122 | code tends to use ``bb.build.exec_func()`` more often. |
| 1123 | |
| 1124 | Anonymous Python Functions |
| 1125 | -------------------------- |
| 1126 | |
| 1127 | Sometimes it is useful to set variables or perform other operations |
| 1128 | programmatically during parsing. To do this, you can define special |
| 1129 | Python functions, called anonymous Python functions, that run at the end |
| 1130 | of parsing. For example, the following conditionally sets a variable |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1131 | based on the value of another variable:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1132 | |
| 1133 | python () { |
| 1134 | if d.getVar('SOMEVAR') == 'value': |
| 1135 | d.setVar('ANOTHERVAR', 'value2') |
| 1136 | } |
| 1137 | |
| 1138 | An equivalent way to mark a function as an anonymous function is to give it |
| 1139 | the name "__anonymous", rather than no name. |
| 1140 | |
| 1141 | Anonymous Python functions always run at the end of parsing, regardless |
| 1142 | of where they are defined. If a recipe contains many anonymous |
| 1143 | functions, they run in the same order as they are defined within the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1144 | recipe. As an example, consider the following snippet:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1145 | |
| 1146 | python () { |
| 1147 | d.setVar('FOO', 'foo 2') |
| 1148 | } |
| 1149 | |
| 1150 | FOO = "foo 1" |
| 1151 | |
| 1152 | python () { |
| 1153 | d.appendVar('BAR',' bar 2') |
| 1154 | } |
| 1155 | |
| 1156 | BAR = "bar 1" |
| 1157 | |
| 1158 | The previous example is conceptually |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1159 | equivalent to the following snippet:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1160 | |
| 1161 | FOO = "foo 1" |
| 1162 | BAR = "bar 1" |
| 1163 | FOO = "foo 2" |
| 1164 | BAR += "bar 2" |
| 1165 | |
| 1166 | ``FOO`` ends up with the value "foo 2", and |
| 1167 | ``BAR`` with the value "bar 1 bar 2". Just as in the second snippet, the |
| 1168 | values set for the variables within the anonymous functions become |
| 1169 | available to tasks, which always run after parsing. |
| 1170 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1171 | Overrides and override-style operators such as "``:append``" are applied |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1172 | before anonymous functions run. In the following example, ``FOO`` ends |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1173 | up with the value "foo from anonymous":: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1174 | |
| 1175 | FOO = "foo" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1176 | FOO:append = " from outside" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1177 | |
| 1178 | python () { |
| 1179 | d.setVar("FOO", "foo from anonymous") |
| 1180 | } |
| 1181 | |
| 1182 | For methods |
| 1183 | you can use with anonymous Python functions, see the |
| 1184 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:functions you can call from within python`" |
| 1185 | section. For a different method to run Python code during parsing, see |
| 1186 | the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inline python variable expansion`" section. |
| 1187 | |
| 1188 | Flexible Inheritance for Class Functions |
| 1189 | ---------------------------------------- |
| 1190 | |
| 1191 | Through coding techniques and the use of ``EXPORT_FUNCTIONS``, BitBake |
| 1192 | supports exporting a function from a class such that the class function |
| 1193 | appears as the default implementation of the function, but can still be |
| 1194 | called if a recipe inheriting the class needs to define its own version |
| 1195 | of the function. |
| 1196 | |
| 1197 | To understand the benefits of this feature, consider the basic scenario |
| 1198 | where a class defines a task function and your recipe inherits the |
| 1199 | class. In this basic scenario, your recipe inherits the task function as |
| 1200 | defined in the class. If desired, your recipe can add to the start and |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1201 | end of the function by using the ":prepend" or ":append" operations |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1202 | respectively, or it can redefine the function completely. However, if it |
| 1203 | redefines the function, there is no means for it to call the class |
| 1204 | version of the function. ``EXPORT_FUNCTIONS`` provides a mechanism that |
| 1205 | enables the recipe's version of the function to call the original |
| 1206 | version of the function. |
| 1207 | |
| 1208 | To make use of this technique, you need the following things in place: |
| 1209 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1210 | - The class needs to define the function as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1211 | |
| 1212 | classname_functionname |
| 1213 | |
| 1214 | For example, if you have a class file |
| 1215 | ``bar.bbclass`` and a function named ``do_foo``, the class must |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1216 | define the function as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1217 | |
| 1218 | bar_do_foo |
| 1219 | |
| 1220 | - The class needs to contain the ``EXPORT_FUNCTIONS`` statement as |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1221 | follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1222 | |
| 1223 | EXPORT_FUNCTIONS functionname |
| 1224 | |
| 1225 | For example, continuing with |
| 1226 | the same example, the statement in the ``bar.bbclass`` would be as |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1227 | follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1228 | |
| 1229 | EXPORT_FUNCTIONS do_foo |
| 1230 | |
| 1231 | - You need to call the function appropriately from within your recipe. |
| 1232 | Continuing with the same example, if your recipe needs to call the |
| 1233 | class version of the function, it should call ``bar_do_foo``. |
| 1234 | Assuming ``do_foo`` was a shell function and ``EXPORT_FUNCTIONS`` was |
| 1235 | used as above, the recipe's function could conditionally call the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1236 | class version of the function as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1237 | |
| 1238 | do_foo() { |
| 1239 | if [ somecondition ] ; then |
| 1240 | bar_do_foo |
| 1241 | else |
| 1242 | # Do something else |
| 1243 | fi |
| 1244 | } |
| 1245 | |
| 1246 | To call your modified version of the function as defined in your recipe, |
| 1247 | call it as ``do_foo``. |
| 1248 | |
| 1249 | With these conditions met, your single recipe can freely choose between |
| 1250 | the original function as defined in the class file and the modified |
| 1251 | function in your recipe. If you do not set up these conditions, you are |
| 1252 | limited to using one function or the other. |
| 1253 | |
| 1254 | Tasks |
| 1255 | ===== |
| 1256 | |
| 1257 | Tasks are BitBake execution units that make up the steps that BitBake |
| 1258 | can run for a given recipe. Tasks are only supported in recipes and |
| 1259 | classes (i.e. in ``.bb`` files and files included or inherited from |
| 1260 | ``.bb`` files). By convention, tasks have names that start with "do\_". |
| 1261 | |
| 1262 | Promoting a Function to a Task |
| 1263 | ------------------------------ |
| 1264 | |
| 1265 | Tasks are either :ref:`shell functions <bitbake-user-manual/bitbake-user-manual-metadata:shell functions>` or |
| 1266 | :ref:`BitBake-style Python functions <bitbake-user-manual/bitbake-user-manual-metadata:bitbake-style python functions>` |
| 1267 | that have been promoted to tasks by using the ``addtask`` command. The |
| 1268 | ``addtask`` command can also optionally describe dependencies between |
| 1269 | the task and other tasks. Here is an example that shows how to define a |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1270 | task and declare some dependencies:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1271 | |
| 1272 | python do_printdate () { |
| 1273 | import time |
| 1274 | print time.strftime('%Y%m%d', time.gmtime()) |
| 1275 | } |
| 1276 | addtask printdate after do_fetch before do_build |
| 1277 | |
| 1278 | The first argument to ``addtask`` is the name |
| 1279 | of the function to promote to a task. If the name does not start with |
| 1280 | "do\_", "do\_" is implicitly added, which enforces the convention that all |
| 1281 | task names start with "do\_". |
| 1282 | |
| 1283 | In the previous example, the ``do_printdate`` task becomes a dependency |
| 1284 | of the ``do_build`` task, which is the default task (i.e. the task run |
| 1285 | by the ``bitbake`` command unless another task is specified explicitly). |
| 1286 | Additionally, the ``do_printdate`` task becomes dependent upon the |
| 1287 | ``do_fetch`` task. Running the ``do_build`` task results in the |
| 1288 | ``do_printdate`` task running first. |
| 1289 | |
| 1290 | .. note:: |
| 1291 | |
| 1292 | If you try out the previous example, you might see that the |
| 1293 | ``do_printdate`` |
| 1294 | task is only run the first time you build the recipe with the |
| 1295 | ``bitbake`` |
| 1296 | command. This is because BitBake considers the task "up-to-date" |
| 1297 | after that initial run. If you want to force the task to always be |
| 1298 | rerun for experimentation purposes, you can make BitBake always |
| 1299 | consider the task "out-of-date" by using the |
| 1300 | :ref:`[nostamp] <bitbake-user-manual/bitbake-user-manual-metadata:Variable Flags>` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1301 | variable flag, as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1302 | |
| 1303 | do_printdate[nostamp] = "1" |
| 1304 | |
| 1305 | You can also explicitly run the task and provide the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1306 | -f option as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1307 | |
| 1308 | $ bitbake recipe -c printdate -f |
| 1309 | |
| 1310 | When manually selecting a task to run with the bitbake ``recipe |
| 1311 | -c task`` command, you can omit the "do\_" prefix as part of the task |
| 1312 | name. |
| 1313 | |
| 1314 | You might wonder about the practical effects of using ``addtask`` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1315 | without specifying any dependencies as is done in the following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1316 | |
| 1317 | addtask printdate |
| 1318 | |
| 1319 | In this example, assuming dependencies have not been |
| 1320 | added through some other means, the only way to run the task is by |
| 1321 | explicitly selecting it with ``bitbake`` recipe ``-c printdate``. You |
| 1322 | can use the ``do_listtasks`` task to list all tasks defined in a recipe |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1323 | as shown in the following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1324 | |
| 1325 | $ bitbake recipe -c listtasks |
| 1326 | |
| 1327 | For more information on task dependencies, see the |
| 1328 | ":ref:`bitbake-user-manual/bitbake-user-manual-execution:dependencies`" section. |
| 1329 | |
| 1330 | See the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`" section for information |
| 1331 | on variable flags you can use with tasks. |
| 1332 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1333 | .. note:: |
| 1334 | |
| 1335 | While it's infrequent, it's possible to define multiple tasks as |
| 1336 | dependencies when calling ``addtask``. For example, here's a snippet |
| 1337 | from the OpenEmbedded class file ``package_tar.bbclass``:: |
| 1338 | |
| 1339 | addtask package_write_tar before do_build after do_packagedata do_package |
| 1340 | |
| 1341 | Note how the ``package_write_tar`` task has to wait until both of |
| 1342 | ``do_packagedata`` and ``do_package`` complete. |
| 1343 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1344 | Deleting a Task |
| 1345 | --------------- |
| 1346 | |
| 1347 | As well as being able to add tasks, you can delete them. Simply use the |
| 1348 | ``deltask`` command to delete a task. For example, to delete the example |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1349 | task used in the previous sections, you would use:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1350 | |
| 1351 | deltask printdate |
| 1352 | |
| 1353 | If you delete a task using the ``deltask`` command and the task has |
| 1354 | dependencies, the dependencies are not reconnected. For example, suppose |
| 1355 | you have three tasks named ``do_a``, ``do_b``, and ``do_c``. |
| 1356 | Furthermore, ``do_c`` is dependent on ``do_b``, which in turn is |
| 1357 | dependent on ``do_a``. Given this scenario, if you use ``deltask`` to |
| 1358 | delete ``do_b``, the implicit dependency relationship between ``do_c`` |
| 1359 | and ``do_a`` through ``do_b`` no longer exists, and ``do_c`` |
| 1360 | dependencies are not updated to include ``do_a``. Thus, ``do_c`` is free |
| 1361 | to run before ``do_a``. |
| 1362 | |
| 1363 | If you want dependencies such as these to remain intact, use the |
| 1364 | ``[noexec]`` varflag to disable the task instead of using the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1365 | ``deltask`` command to delete it:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1366 | |
| 1367 | do_b[noexec] = "1" |
| 1368 | |
| 1369 | Passing Information Into the Build Task Environment |
| 1370 | --------------------------------------------------- |
| 1371 | |
| 1372 | When running a task, BitBake tightly controls the shell execution |
| 1373 | environment of the build tasks to make sure unwanted contamination from |
| 1374 | the build machine cannot influence the build. |
| 1375 | |
| 1376 | .. note:: |
| 1377 | |
| 1378 | By default, BitBake cleans the environment to include only those |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1379 | things exported or listed in its passthrough list to ensure that the |
| 1380 | build environment is reproducible and consistent. You can prevent this |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1381 | "cleaning" by setting the :term:`BB_PRESERVE_ENV` variable. |
| 1382 | |
| 1383 | Consequently, if you do want something to get passed into the build task |
| 1384 | environment, you must take these two steps: |
| 1385 | |
| 1386 | #. Tell BitBake to load what you want from the environment into the |
| 1387 | datastore. You can do so through the |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1388 | :term:`BB_ENV_PASSTHROUGH` and |
| 1389 | :term:`BB_ENV_PASSTHROUGH_ADDITIONS` variables. For |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1390 | example, assume you want to prevent the build system from accessing |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1391 | your ``$HOME/.ccache`` directory. The following command adds the |
| 1392 | the environment variable ``CCACHE_DIR`` to BitBake's passthrough |
| 1393 | list to allow that variable into the datastore:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1394 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1395 | export BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS CCACHE_DIR" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1396 | |
| 1397 | #. Tell BitBake to export what you have loaded into the datastore to the |
| 1398 | task environment of every running task. Loading something from the |
| 1399 | environment into the datastore (previous step) only makes it |
| 1400 | available in the datastore. To export it to the task environment of |
| 1401 | every running task, use a command similar to the following in your |
| 1402 | local configuration file ``local.conf`` or your distribution |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1403 | configuration file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1404 | |
| 1405 | export CCACHE_DIR |
| 1406 | |
| 1407 | .. note:: |
| 1408 | |
| 1409 | A side effect of the previous steps is that BitBake records the |
| 1410 | variable as a dependency of the build process in things like the |
| 1411 | setscene checksums. If doing so results in unnecessary rebuilds of |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1412 | tasks, you can also flag the variable so that the setscene code |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1413 | ignores the dependency when it creates checksums. |
| 1414 | |
| 1415 | Sometimes, it is useful to be able to obtain information from the |
| 1416 | original execution environment. BitBake saves a copy of the original |
| 1417 | environment into a special variable named :term:`BB_ORIGENV`. |
| 1418 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1419 | The :term:`BB_ORIGENV` variable returns a datastore object that can be |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1420 | queried using the standard datastore operators such as |
| 1421 | ``getVar(, False)``. The datastore object is useful, for example, to |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1422 | find the original ``DISPLAY`` variable. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1423 | |
| 1424 | origenv = d.getVar("BB_ORIGENV", False) |
| 1425 | bar = origenv.getVar("BAR", False) |
| 1426 | |
| 1427 | The previous example returns ``BAR`` from the original execution |
| 1428 | environment. |
| 1429 | |
| 1430 | Variable Flags |
| 1431 | ============== |
| 1432 | |
| 1433 | Variable flags (varflags) help control a task's functionality and |
| 1434 | dependencies. BitBake reads and writes varflags to the datastore using |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1435 | the following command forms:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1436 | |
| 1437 | variable = d.getVarFlags("variable") |
| 1438 | self.d.setVarFlags("FOO", {"func": True}) |
| 1439 | |
| 1440 | When working with varflags, the same syntax, with the exception of |
| 1441 | overrides, applies. In other words, you can set, append, and prepend |
| 1442 | varflags just like variables. See the |
| 1443 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flag syntax`" section for details. |
| 1444 | |
| 1445 | BitBake has a defined set of varflags available for recipes and classes. |
| 1446 | Tasks support a number of these flags which control various |
| 1447 | functionality of the task: |
| 1448 | |
| 1449 | - ``[cleandirs]``: Empty directories that should be created before |
| 1450 | the task runs. Directories that already exist are removed and |
| 1451 | recreated to empty them. |
| 1452 | |
| 1453 | - ``[depends]``: Controls inter-task dependencies. See the |
| 1454 | :term:`DEPENDS` variable and the |
| 1455 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inter-task |
| 1456 | dependencies`" section for more information. |
| 1457 | |
| 1458 | - ``[deptask]``: Controls task build-time dependencies. See the |
| 1459 | :term:`DEPENDS` variable and the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:build dependencies`" section for more information. |
| 1460 | |
| 1461 | - ``[dirs]``: Directories that should be created before the task |
| 1462 | runs. Directories that already exist are left as is. The last |
| 1463 | directory listed is used as the current working directory for the |
| 1464 | task. |
| 1465 | |
| 1466 | - ``[lockfiles]``: Specifies one or more lockfiles to lock while the |
| 1467 | task executes. Only one task may hold a lockfile, and any task that |
| 1468 | attempts to lock an already locked file will block until the lock is |
| 1469 | released. You can use this variable flag to accomplish mutual |
| 1470 | exclusion. |
| 1471 | |
| 1472 | - ``[noexec]``: When set to "1", marks the task as being empty, with |
| 1473 | no execution required. You can use the ``[noexec]`` flag to set up |
| 1474 | tasks as dependency placeholders, or to disable tasks defined |
| 1475 | elsewhere that are not needed in a particular recipe. |
| 1476 | |
| 1477 | - ``[nostamp]``: When set to "1", tells BitBake to not generate a |
| 1478 | stamp file for a task, which implies the task should always be |
| 1479 | executed. |
| 1480 | |
| 1481 | .. caution:: |
| 1482 | |
| 1483 | Any task that depends (possibly indirectly) on a ``[nostamp]`` task will |
| 1484 | always be executed as well. This can cause unnecessary rebuilding if you |
| 1485 | are not careful. |
| 1486 | |
| 1487 | - ``[number_threads]``: Limits tasks to a specific number of |
| 1488 | simultaneous threads during execution. This varflag is useful when |
| 1489 | your build host has a large number of cores but certain tasks need to |
| 1490 | be rate-limited due to various kinds of resource constraints (e.g. to |
| 1491 | avoid network throttling). ``number_threads`` works similarly to the |
| 1492 | :term:`BB_NUMBER_THREADS` variable but is task-specific. |
| 1493 | |
| 1494 | Set the value globally. For example, the following makes sure the |
| 1495 | ``do_fetch`` task uses no more than two simultaneous execution |
| 1496 | threads: do_fetch[number_threads] = "2" |
| 1497 | |
| 1498 | .. warning:: |
| 1499 | |
| 1500 | - Setting the varflag in individual recipes rather than globally |
| 1501 | can result in unpredictable behavior. |
| 1502 | |
| 1503 | - Setting the varflag to a value greater than the value used in |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1504 | the :term:`BB_NUMBER_THREADS` variable causes ``number_threads`` to |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1505 | have no effect. |
| 1506 | |
| 1507 | - ``[postfuncs]``: List of functions to call after the completion of |
| 1508 | the task. |
| 1509 | |
| 1510 | - ``[prefuncs]``: List of functions to call before the task executes. |
| 1511 | |
| 1512 | - ``[rdepends]``: Controls inter-task runtime dependencies. See the |
| 1513 | :term:`RDEPENDS` variable, the |
| 1514 | :term:`RRECOMMENDS` variable, and the |
| 1515 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:inter-task dependencies`" section for |
| 1516 | more information. |
| 1517 | |
| 1518 | - ``[rdeptask]``: Controls task runtime dependencies. See the |
| 1519 | :term:`RDEPENDS` variable, the |
| 1520 | :term:`RRECOMMENDS` variable, and the |
| 1521 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:runtime dependencies`" section for more |
| 1522 | information. |
| 1523 | |
| 1524 | - ``[recideptask]``: When set in conjunction with ``recrdeptask``, |
| 1525 | specifies a task that should be inspected for additional |
| 1526 | dependencies. |
| 1527 | |
| 1528 | - ``[recrdeptask]``: Controls task recursive runtime dependencies. |
| 1529 | See the :term:`RDEPENDS` variable, the |
| 1530 | :term:`RRECOMMENDS` variable, and the |
| 1531 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:recursive dependencies`" section for |
| 1532 | more information. |
| 1533 | |
| 1534 | - ``[stamp-extra-info]``: Extra stamp information to append to the |
| 1535 | task's stamp. As an example, OpenEmbedded uses this flag to allow |
| 1536 | machine-specific tasks. |
| 1537 | |
| 1538 | - ``[umask]``: The umask to run the task under. |
| 1539 | |
| 1540 | Several varflags are useful for controlling how signatures are |
| 1541 | calculated for variables. For more information on this process, see the |
| 1542 | ":ref:`bitbake-user-manual/bitbake-user-manual-execution:checksums (signatures)`" section. |
| 1543 | |
| 1544 | - ``[vardeps]``: Specifies a space-separated list of additional |
| 1545 | variables to add to a variable's dependencies for the purposes of |
| 1546 | calculating its signature. Adding variables to this list is useful, |
| 1547 | for example, when a function refers to a variable in a manner that |
| 1548 | does not allow BitBake to automatically determine that the variable |
| 1549 | is referred to. |
| 1550 | |
| 1551 | - ``[vardepsexclude]``: Specifies a space-separated list of variables |
| 1552 | that should be excluded from a variable's dependencies for the |
| 1553 | purposes of calculating its signature. |
| 1554 | |
| 1555 | - ``[vardepvalue]``: If set, instructs BitBake to ignore the actual |
| 1556 | value of the variable and instead use the specified value when |
| 1557 | calculating the variable's signature. |
| 1558 | |
| 1559 | - ``[vardepvalueexclude]``: Specifies a pipe-separated list of |
| 1560 | strings to exclude from the variable's value when calculating the |
| 1561 | variable's signature. |
| 1562 | |
| 1563 | Events |
| 1564 | ====== |
| 1565 | |
| 1566 | BitBake allows installation of event handlers within recipe and class |
| 1567 | files. Events are triggered at certain points during operation, such as |
| 1568 | the beginning of operation against a given recipe (i.e. ``*.bb``), the |
| 1569 | start of a given task, a task failure, a task success, and so forth. The |
| 1570 | intent is to make it easy to do things like email notification on build |
| 1571 | failures. |
| 1572 | |
| 1573 | Following is an example event handler that prints the name of the event |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1574 | and the content of the :term:`FILE` variable:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1575 | |
| 1576 | addhandler myclass_eventhandler |
| 1577 | python myclass_eventhandler() { |
| 1578 | from bb.event import getName |
| 1579 | print("The name of the Event is %s" % getName(e)) |
| 1580 | print("The file we run for is %s" % d.getVar('FILE')) |
| 1581 | } |
| 1582 | myclass_eventhandler[eventmask] = "bb.event.BuildStarted |
| 1583 | bb.event.BuildCompleted" |
| 1584 | |
| 1585 | In the previous example, an eventmask has been |
| 1586 | set so that the handler only sees the "BuildStarted" and |
| 1587 | "BuildCompleted" events. This event handler gets called every time an |
| 1588 | event matching the eventmask is triggered. A global variable "e" is |
| 1589 | defined, which represents the current event. With the ``getName(e)`` |
| 1590 | method, you can get the name of the triggered event. The global |
| 1591 | datastore is available as "d". In legacy code, you might see "e.data" |
| 1592 | used to get the datastore. However, realize that "e.data" is deprecated |
| 1593 | and you should use "d" going forward. |
| 1594 | |
| 1595 | The context of the datastore is appropriate to the event in question. |
| 1596 | For example, "BuildStarted" and "BuildCompleted" events run before any |
| 1597 | tasks are executed so would be in the global configuration datastore |
| 1598 | namespace. No recipe-specific metadata exists in that namespace. The |
| 1599 | "BuildStarted" and "BuildCompleted" events also run in the main |
| 1600 | cooker/server process rather than any worker context. Thus, any changes |
| 1601 | made to the datastore would be seen by other cooker/server events within |
| 1602 | the current build but not seen outside of that build or in any worker |
| 1603 | context. Task events run in the actual tasks in question consequently |
| 1604 | have recipe-specific and task-specific contents. These events run in the |
| 1605 | worker context and are discarded at the end of task execution. |
| 1606 | |
| 1607 | During a standard build, the following common events might occur. The |
| 1608 | following events are the most common kinds of events that most metadata |
| 1609 | might have an interest in viewing: |
| 1610 | |
| 1611 | - ``bb.event.ConfigParsed()``: Fired when the base configuration; which |
| 1612 | consists of ``bitbake.conf``, ``base.bbclass`` and any global |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1613 | :term:`INHERIT` statements; has been parsed. You can see multiple such |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1614 | events when each of the workers parse the base configuration or if |
| 1615 | the server changes configuration and reparses. Any given datastore |
| 1616 | only has one such event executed against it, however. If |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1617 | :term:`BB_INVALIDCONF` is set in the datastore by the event |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1618 | handler, the configuration is reparsed and a new event triggered, |
| 1619 | allowing the metadata to update configuration. |
| 1620 | |
| 1621 | - ``bb.event.HeartbeatEvent()``: Fires at regular time intervals of one |
| 1622 | second. You can configure the interval time using the |
| 1623 | ``BB_HEARTBEAT_EVENT`` variable. The event's "time" attribute is the |
| 1624 | ``time.time()`` value when the event is triggered. This event is |
| 1625 | useful for activities such as system state monitoring. |
| 1626 | |
| 1627 | - ``bb.event.ParseStarted()``: Fired when BitBake is about to start |
| 1628 | parsing recipes. This event's "total" attribute represents the number |
| 1629 | of recipes BitBake plans to parse. |
| 1630 | |
| 1631 | - ``bb.event.ParseProgress()``: Fired as parsing progresses. This |
| 1632 | event's "current" attribute is the number of recipes parsed as well |
| 1633 | as the "total" attribute. |
| 1634 | |
| 1635 | - ``bb.event.ParseCompleted()``: Fired when parsing is complete. This |
| 1636 | event's "cached", "parsed", "skipped", "virtuals", "masked", and |
| 1637 | "errors" attributes provide statistics for the parsing results. |
| 1638 | |
| 1639 | - ``bb.event.BuildStarted()``: Fired when a new build starts. BitBake |
| 1640 | fires multiple "BuildStarted" events (one per configuration) when |
| 1641 | multiple configuration (multiconfig) is enabled. |
| 1642 | |
| 1643 | - ``bb.build.TaskStarted()``: Fired when a task starts. This event's |
| 1644 | "taskfile" attribute points to the recipe from which the task |
| 1645 | originates. The "taskname" attribute, which is the task's name, |
| 1646 | includes the ``do_`` prefix, and the "logfile" attribute point to |
| 1647 | where the task's output is stored. Finally, the "time" attribute is |
| 1648 | the task's execution start time. |
| 1649 | |
| 1650 | - ``bb.build.TaskInvalid()``: Fired if BitBake tries to execute a task |
| 1651 | that does not exist. |
| 1652 | |
| 1653 | - ``bb.build.TaskFailedSilent()``: Fired for setscene tasks that fail |
| 1654 | and should not be presented to the user verbosely. |
| 1655 | |
| 1656 | - ``bb.build.TaskFailed()``: Fired for normal tasks that fail. |
| 1657 | |
| 1658 | - ``bb.build.TaskSucceeded()``: Fired when a task successfully |
| 1659 | completes. |
| 1660 | |
| 1661 | - ``bb.event.BuildCompleted()``: Fired when a build finishes. |
| 1662 | |
| 1663 | - ``bb.cooker.CookerExit()``: Fired when the BitBake server/cooker |
| 1664 | shuts down. This event is usually only seen by the UIs as a sign they |
| 1665 | should also shutdown. |
| 1666 | |
| 1667 | This next list of example events occur based on specific requests to the |
| 1668 | server. These events are often used to communicate larger pieces of |
| 1669 | information from the BitBake server to other parts of BitBake such as |
| 1670 | user interfaces: |
| 1671 | |
| 1672 | - ``bb.event.TreeDataPreparationStarted()`` |
| 1673 | - ``bb.event.TreeDataPreparationProgress()`` |
| 1674 | - ``bb.event.TreeDataPreparationCompleted()`` |
| 1675 | - ``bb.event.DepTreeGenerated()`` |
| 1676 | - ``bb.event.CoreBaseFilesFound()`` |
| 1677 | - ``bb.event.ConfigFilePathFound()`` |
| 1678 | - ``bb.event.FilesMatchingFound()`` |
| 1679 | - ``bb.event.ConfigFilesFound()`` |
| 1680 | - ``bb.event.TargetsTreeGenerated()`` |
| 1681 | |
| 1682 | .. _variants-class-extension-mechanism: |
| 1683 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 1684 | Variants --- Class Extension Mechanism |
| 1685 | ====================================== |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1686 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 1687 | BitBake supports multiple incarnations of a recipe file via the |
| 1688 | :term:`BBCLASSEXTEND` variable. |
| 1689 | |
| 1690 | The :term:`BBCLASSEXTEND` variable is a space separated list of classes used |
| 1691 | to "extend" the recipe for each variant. Here is an example that results in a |
| 1692 | second incarnation of the current recipe being available. This second |
| 1693 | incarnation will have the "native" class inherited. :: |
| 1694 | |
| 1695 | BBCLASSEXTEND = "native" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1696 | |
| 1697 | .. note:: |
| 1698 | |
| 1699 | The mechanism for this class extension is extremely specific to the |
| 1700 | implementation. Usually, the recipe's :term:`PROVIDES` , :term:`PN` , and |
| 1701 | :term:`DEPENDS` variables would need to be modified by the extension |
| 1702 | class. For specific examples, see the OE-Core native , nativesdk , and |
| 1703 | multilib classes. |
| 1704 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1705 | Dependencies |
| 1706 | ============ |
| 1707 | |
| 1708 | To allow for efficient parallel processing, BitBake handles dependencies |
| 1709 | at the task level. Dependencies can exist both between tasks within a |
| 1710 | single recipe and between tasks in different recipes. Following are |
| 1711 | examples of each: |
| 1712 | |
| 1713 | - For tasks within a single recipe, a recipe's ``do_configure`` task |
| 1714 | might need to complete before its ``do_compile`` task can run. |
| 1715 | |
| 1716 | - For tasks in different recipes, one recipe's ``do_configure`` task |
| 1717 | might require another recipe's ``do_populate_sysroot`` task to finish |
| 1718 | first such that the libraries and headers provided by the other |
| 1719 | recipe are available. |
| 1720 | |
| 1721 | This section describes several ways to declare dependencies. Remember, |
| 1722 | even though dependencies are declared in different ways, they are all |
| 1723 | simply dependencies between tasks. |
| 1724 | |
| 1725 | .. _dependencies-internal-to-the-bb-file: |
| 1726 | |
| 1727 | Dependencies Internal to the ``.bb`` File |
| 1728 | ----------------------------------------- |
| 1729 | |
| 1730 | BitBake uses the ``addtask`` directive to manage dependencies that are |
| 1731 | internal to a given recipe file. You can use the ``addtask`` directive |
| 1732 | to indicate when a task is dependent on other tasks or when other tasks |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1733 | depend on that recipe. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1734 | |
| 1735 | addtask printdate after do_fetch before do_build |
| 1736 | |
| 1737 | In this example, the ``do_printdate`` task |
| 1738 | depends on the completion of the ``do_fetch`` task, and the ``do_build`` |
| 1739 | task depends on the completion of the ``do_printdate`` task. |
| 1740 | |
| 1741 | .. note:: |
| 1742 | |
| 1743 | For a task to run, it must be a direct or indirect dependency of some |
| 1744 | other task that is scheduled to run. |
| 1745 | |
| 1746 | For illustration, here are some examples: |
| 1747 | |
| 1748 | - The directive ``addtask mytask before do_configure`` causes |
| 1749 | ``do_mytask`` to run before ``do_configure`` runs. Be aware that |
| 1750 | ``do_mytask`` still only runs if its :ref:`input |
| 1751 | checksum <bitbake-user-manual/bitbake-user-manual-execution:checksums (signatures)>` has changed since the last time it was |
| 1752 | run. Changes to the input checksum of ``do_mytask`` also |
| 1753 | indirectly cause ``do_configure`` to run. |
| 1754 | |
| 1755 | - The directive ``addtask mytask after do_configure`` by itself |
| 1756 | never causes ``do_mytask`` to run. ``do_mytask`` can still be run |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1757 | manually as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1758 | |
| 1759 | $ bitbake recipe -c mytask |
| 1760 | |
| 1761 | Declaring ``do_mytask`` as a dependency of some other task that is |
| 1762 | scheduled to run also causes it to run. Regardless, the task runs after |
| 1763 | ``do_configure``. |
| 1764 | |
| 1765 | Build Dependencies |
| 1766 | ------------------ |
| 1767 | |
| 1768 | BitBake uses the :term:`DEPENDS` variable to manage |
| 1769 | build time dependencies. The ``[deptask]`` varflag for tasks signifies |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1770 | the task of each item listed in :term:`DEPENDS` that must complete before |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1771 | that task can be executed. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1772 | |
| 1773 | do_configure[deptask] = "do_populate_sysroot" |
| 1774 | |
| 1775 | In this example, the ``do_populate_sysroot`` task |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1776 | of each item in :term:`DEPENDS` must complete before ``do_configure`` can |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1777 | execute. |
| 1778 | |
| 1779 | Runtime Dependencies |
| 1780 | -------------------- |
| 1781 | |
| 1782 | BitBake uses the :term:`PACKAGES`, :term:`RDEPENDS`, and :term:`RRECOMMENDS` |
| 1783 | variables to manage runtime dependencies. |
| 1784 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1785 | The :term:`PACKAGES` variable lists runtime packages. Each of those packages |
| 1786 | can have :term:`RDEPENDS` and :term:`RRECOMMENDS` runtime dependencies. The |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1787 | ``[rdeptask]`` flag for tasks is used to signify the task of each item |
| 1788 | runtime dependency which must have completed before that task can be |
| 1789 | executed. :: |
| 1790 | |
| 1791 | do_package_qa[rdeptask] = "do_packagedata" |
| 1792 | |
| 1793 | In the previous |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1794 | example, the ``do_packagedata`` task of each item in :term:`RDEPENDS` must |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1795 | have completed before ``do_package_qa`` can execute. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1796 | Although :term:`RDEPENDS` contains entries from the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1797 | runtime dependency namespace, BitBake knows how to map them back |
| 1798 | to the build-time dependency namespace, in which the tasks are defined. |
| 1799 | |
| 1800 | Recursive Dependencies |
| 1801 | ---------------------- |
| 1802 | |
| 1803 | BitBake uses the ``[recrdeptask]`` flag to manage recursive task |
| 1804 | dependencies. BitBake looks through the build-time and runtime |
| 1805 | dependencies of the current recipe, looks through the task's inter-task |
| 1806 | dependencies, and then adds dependencies for the listed task. Once |
| 1807 | BitBake has accomplished this, it recursively works through the |
| 1808 | dependencies of those tasks. Iterative passes continue until all |
| 1809 | dependencies are discovered and added. |
| 1810 | |
| 1811 | The ``[recrdeptask]`` flag is most commonly used in high-level recipes |
| 1812 | that need to wait for some task to finish "globally". For example, |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1813 | ``image.bbclass`` has the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1814 | |
| 1815 | do_rootfs[recrdeptask] += "do_packagedata" |
| 1816 | |
| 1817 | This statement says that the ``do_packagedata`` task of |
| 1818 | the current recipe and all recipes reachable (by way of dependencies) |
| 1819 | from the image recipe must run before the ``do_rootfs`` task can run. |
| 1820 | |
| 1821 | BitBake allows a task to recursively depend on itself by |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1822 | referencing itself in the task list:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1823 | |
| 1824 | do_a[recrdeptask] = "do_a do_b" |
| 1825 | |
| 1826 | In the same way as before, this means that the ``do_a`` |
| 1827 | and ``do_b`` tasks of the current recipe and all |
| 1828 | recipes reachable (by way of dependencies) from the recipe |
| 1829 | must run before the ``do_a`` task can run. In this |
| 1830 | case BitBake will ignore the current recipe's ``do_a`` |
| 1831 | task circular dependency on itself. |
| 1832 | |
| 1833 | Inter-Task Dependencies |
| 1834 | ----------------------- |
| 1835 | |
| 1836 | BitBake uses the ``[depends]`` flag in a more generic form to manage |
| 1837 | inter-task dependencies. This more generic form allows for |
| 1838 | inter-dependency checks for specific tasks rather than checks for the |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1839 | data in :term:`DEPENDS`. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1840 | |
| 1841 | do_patch[depends] = "quilt-native:do_populate_sysroot" |
| 1842 | |
| 1843 | In this example, the ``do_populate_sysroot`` task of the target ``quilt-native`` |
| 1844 | must have completed before the ``do_patch`` task can execute. |
| 1845 | |
| 1846 | The ``[rdepends]`` flag works in a similar way but takes targets in the |
| 1847 | runtime namespace instead of the build-time dependency namespace. |
| 1848 | |
| 1849 | Functions You Can Call From Within Python |
| 1850 | ========================================= |
| 1851 | |
| 1852 | BitBake provides many functions you can call from within Python |
| 1853 | functions. This section lists the most commonly used functions, and |
| 1854 | mentions where to find others. |
| 1855 | |
| 1856 | Functions for Accessing Datastore Variables |
| 1857 | ------------------------------------------- |
| 1858 | |
| 1859 | It is often necessary to access variables in the BitBake datastore using |
| 1860 | Python functions. The BitBake datastore has an API that allows you this |
| 1861 | access. Here is a list of available operations: |
| 1862 | |
| 1863 | .. list-table:: |
| 1864 | :widths: auto |
| 1865 | :header-rows: 1 |
| 1866 | |
| 1867 | * - *Operation* |
| 1868 | - *Description* |
| 1869 | * - ``d.getVar("X", expand)`` |
| 1870 | - Returns the value of variable "X". Using "expand=True" expands the |
| 1871 | value. Returns "None" if the variable "X" does not exist. |
| 1872 | * - ``d.setVar("X", "value")`` |
| 1873 | - Sets the variable "X" to "value" |
| 1874 | * - ``d.appendVar("X", "value")`` |
| 1875 | - Adds "value" to the end of the variable "X". Acts like ``d.setVar("X", |
| 1876 | "value")`` if the variable "X" does not exist. |
| 1877 | * - ``d.prependVar("X", "value")`` |
| 1878 | - Adds "value" to the start of the variable "X". Acts like |
| 1879 | ``d.setVar("X","value")`` if the variable "X" does not exist. |
| 1880 | * - ``d.delVar("X")`` |
| 1881 | - Deletes the variable "X" from the datastore. Does nothing if the variable |
| 1882 | "X" does not exist. |
| 1883 | * - ``d.renameVar("X", "Y")`` |
| 1884 | - Renames the variable "X" to "Y". Does nothing if the variable "X" does |
| 1885 | not exist. |
| 1886 | * - ``d.getVarFlag("X", flag, expand)`` |
| 1887 | - Returns the value of variable "X". Using "expand=True" expands the |
| 1888 | value. Returns "None" if either the variable "X" or the named flag does |
| 1889 | not exist. |
| 1890 | * - ``d.setVarFlag("X", flag, "value")`` |
| 1891 | - Sets the named flag for variable "X" to "value". |
| 1892 | * - ``d.appendVarFlag("X", flag, "value")`` |
| 1893 | - Appends "value" to the named flag on the variable "X". Acts like |
| 1894 | ``d.setVarFlag("X", flag, "value")`` if the named flag does not exist. |
| 1895 | * - ``d.prependVarFlag("X", flag, "value")`` |
| 1896 | - Prepends "value" to the named flag on the variable "X". Acts like |
| 1897 | ``d.setVarFlag("X", flag, "value")`` if the named flag does not exist. |
| 1898 | * - ``d.delVarFlag("X", flag)`` |
| 1899 | - Deletes the named flag on the variable "X" from the datastore. |
| 1900 | * - ``d.setVarFlags("X", flagsdict)`` |
| 1901 | - Sets the flags specified in the ``flagsdict()`` |
| 1902 | parameter. ``setVarFlags`` does not clear previous flags. Think of this |
| 1903 | operation as ``addVarFlags``. |
| 1904 | * - ``d.getVarFlags("X")`` |
| 1905 | - Returns a ``flagsdict`` of the flags for the variable "X". Returns "None" |
| 1906 | if the variable "X" does not exist. |
| 1907 | * - ``d.delVarFlags("X")`` |
| 1908 | - Deletes all the flags for the variable "X". Does nothing if the variable |
| 1909 | "X" does not exist. |
| 1910 | * - ``d.expand(expression)`` |
| 1911 | - Expands variable references in the specified string |
| 1912 | expression. References to variables that do not exist are left as is. For |
| 1913 | example, ``d.expand("foo ${X}")`` expands to the literal string "foo |
| 1914 | ${X}" if the variable "X" does not exist. |
| 1915 | |
| 1916 | Other Functions |
| 1917 | --------------- |
| 1918 | |
| 1919 | You can find many other functions that can be called from Python by |
| 1920 | looking at the source code of the ``bb`` module, which is in |
| 1921 | ``bitbake/lib/bb``. For example, ``bitbake/lib/bb/utils.py`` includes |
| 1922 | the commonly used functions ``bb.utils.contains()`` and |
| 1923 | ``bb.utils.mkdirhier()``, which come with docstrings. |
| 1924 | |
| 1925 | Task Checksums and Setscene |
| 1926 | =========================== |
| 1927 | |
| 1928 | BitBake uses checksums (or signatures) along with the setscene to |
| 1929 | determine if a task needs to be run. This section describes the process. |
| 1930 | To help understand how BitBake does this, the section assumes an |
| 1931 | OpenEmbedded metadata-based example. |
| 1932 | |
| 1933 | These checksums are stored in :term:`STAMP`. You can |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1934 | examine the checksums using the following BitBake command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1935 | |
| 1936 | $ bitbake-dumpsigs |
| 1937 | |
| 1938 | This command returns the signature data in a readable |
| 1939 | format that allows you to examine the inputs used when the OpenEmbedded |
| 1940 | build system generates signatures. For example, using |
| 1941 | ``bitbake-dumpsigs`` allows you to examine the ``do_compile`` task's |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 1942 | "sigdata" for a C application (e.g. ``bash``). Running the command also |
| 1943 | reveals that the "CC" variable is part of the inputs that are hashed. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1944 | Any changes to this variable would invalidate the stamp and cause the |
| 1945 | ``do_compile`` task to run. |
| 1946 | |
| 1947 | The following list describes related variables: |
| 1948 | |
| 1949 | - :term:`BB_HASHCHECK_FUNCTION`: |
| 1950 | Specifies the name of the function to call during the "setscene" part |
| 1951 | of the task's execution in order to validate the list of task hashes. |
| 1952 | |
| 1953 | - :term:`BB_SETSCENE_DEPVALID`: |
| 1954 | Specifies a function BitBake calls that determines whether BitBake |
| 1955 | requires a setscene dependency to be met. |
| 1956 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1957 | - :term:`BB_TASKHASH`: Within an executing task, |
| 1958 | this variable holds the hash of the task as returned by the currently |
| 1959 | enabled signature generator. |
| 1960 | |
| 1961 | - :term:`STAMP`: The base path to create stamp files. |
| 1962 | |
| 1963 | - :term:`STAMPCLEAN`: Again, the base path to |
| 1964 | create stamp files but can use wildcards for matching a range of |
| 1965 | files for clean operations. |
| 1966 | |
| 1967 | Wildcard Support in Variables |
| 1968 | ============================= |
| 1969 | |
| 1970 | Support for wildcard use in variables varies depending on the context in |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 1971 | which it is used. For example, some variables and filenames allow |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1972 | limited use of wildcards through the "``%``" and "``*``" characters. |
| 1973 | Other variables or names support Python's |
| 1974 | `glob <https://docs.python.org/3/library/glob.html>`_ syntax, |
| 1975 | `fnmatch <https://docs.python.org/3/library/fnmatch.html#module-fnmatch>`_ |
| 1976 | syntax, or |
| 1977 | `Regular Expression (re) <https://docs.python.org/3/library/re.html>`_ |
| 1978 | syntax. |
| 1979 | |
| 1980 | For variables that have wildcard suport, the documentation describes |
| 1981 | which form of wildcard, its use, and its limitations. |