diff options
Diffstat (limited to 'documentation/migration-guides/migration-5.2.rst')
-rw-r--r-- | documentation/migration-guides/migration-5.2.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/documentation/migration-guides/migration-5.2.rst b/documentation/migration-guides/migration-5.2.rst index 59a2782f24..c54f054c78 100644 --- a/documentation/migration-guides/migration-5.2.rst +++ b/documentation/migration-guides/migration-5.2.rst | |||
@@ -178,6 +178,32 @@ This should now be replaced by:: | |||
178 | 178 | ||
179 | UBOOT_ENTRYPOINT ?= "0x20008000" | 179 | UBOOT_ENTRYPOINT ?= "0x20008000" |
180 | 180 | ||
181 | |||
182 | Git fetcher: support for multiple revisions per URL removed | ||
183 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
184 | |||
185 | The support for having multiple Git revisions per URL in :term:`SRC_URI` was | ||
186 | removed from BitBake, which means the following syntax is not supported | ||
187 | anymore:: | ||
188 | |||
189 | SRC_URI = "git://some.host/somepath;branch=branchX,branchY;name=nameX,nameY" | ||
190 | SRCREV_nameX = "xxxxxxxxxxxxxxxxxxxx" | ||
191 | SRCREV_nameY = "yyyyyyyyyyyyyyyyyyyy" | ||
192 | |||
193 | This was rarely used in the core repositories, and this removal simplifies the | ||
194 | code logic in several places. | ||
195 | |||
196 | Git fetcher: Branch parameter now required in :term:`SRC_URI` | ||
197 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
198 | |||
199 | The ``branch`` parameter is now required when specifying a Git repository in | ||
200 | :term:`SRC_URI`, for example:: | ||
201 | |||
202 | SRC_URI = "git://some.host/somepath;branch=branchX" | ||
203 | |||
204 | A missing ``branch`` parameter used to produce a warning, and will now produce | ||
205 | an error. | ||
206 | |||
181 | Recipe changes | 207 | Recipe changes |
182 | ~~~~~~~~~~~~~~ | 208 | ~~~~~~~~~~~~~~ |
183 | 209 | ||