New Bitbake Syntax Brainstorm
Jump to navigation
Jump to search
| Example | Expands To | Description |
|---|---|---|
| FOO += "bar" | FOO_defvar_append = " bar" | Append " bar" to the default value |
| FOO ??= "bar" | FOO_weakval = "bar" | Set the weakest override value to "bar" |
| FOO_append = "bar" | FOO_defvar_append = "bar" | Append "bar" to the default value |
| FOO_o_append = "bar" | FOO_o_append = "bar" | Append "bar" to FOO_o |
| FOO_append_o = "bar" | FOO_defvar_append_o = "bar" | Append "bar" to default value if o is in OVERRIDES |