diff options
author | Antonin Godard <antonin.godard@bootlin.com> | 2025-02-07 09:27:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-07 17:52:48 +0000 |
commit | 8c49710b8d54150308b7cfab81048bbd613072cd (patch) | |
tree | 2cfc364d8584b0c0c848e90463968f42025e801a /documentation | |
parent | 4e4996855fe91bb3d921e17127fab943a009e0af (diff) | |
download | poky-8c49710b8d54150308b7cfab81048bbd613072cd.tar.gz |
migration-5.2: document BB_CURRENT_MC default value change
After commit 0fa0d8d764bb ("cooker/cache: Drop mc 'default' string
value") in Bitbake, the default value of BB_CURRENT_MC was changed from
"default" to an empty string. Document it.
(From yocto-docs rev: efbd8fa30a5cc42d5243aa87e00e2d92cb265adb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/migration-guides/migration-5.2.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/documentation/migration-guides/migration-5.2.rst b/documentation/migration-guides/migration-5.2.rst index e9de6910e1..a60e3e9a80 100644 --- a/documentation/migration-guides/migration-5.2.rst +++ b/documentation/migration-guides/migration-5.2.rst | |||
@@ -94,6 +94,17 @@ systemd changes | |||
94 | not for socket files). | 94 | not for socket files). |
95 | Now all service files must be explicitly added to :term:`FILES`. | 95 | Now all service files must be explicitly added to :term:`FILES`. |
96 | 96 | ||
97 | Multiconfig changes | ||
98 | ~~~~~~~~~~~~~~~~~~~ | ||
99 | |||
100 | The value of ``BB_CURRENT_MC`` was changed from ``default`` to an empty string | ||
101 | for the default multiconfig configuration to avoid needing to map the values | ||
102 | within BitBake. This was already not happening in some cases so this fixes | ||
103 | some obscure bugs. | ||
104 | |||
105 | Any logic based on ``BB_CURRENT_MC`` equalling to ``default`` by default should | ||
106 | be changed to be equal to an empty string. | ||
107 | |||
97 | Recipe changes | 108 | Recipe changes |
98 | ~~~~~~~~~~~~~~ | 109 | ~~~~~~~~~~~~~~ |
99 | 110 | ||