summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/debugging.rst
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2023-12-06 19:40:41 +0100
committerSteve Sakoman <steve@sakoman.com>2023-12-21 06:18:23 -1000
commit5165ecaa14cbe6185664e425e1a5a3ffbf1dd3c8 (patch)
treedf0eb191cc97c848d9dd4d0dbea853b63e818f22 /documentation/dev-manual/debugging.rst
parent6f8cbeed0284efe44536f591445cb4ec51514bc7 (diff)
downloadpoky-5165ecaa14cbe6185664e425e1a5a3ffbf1dd3c8.tar.gz
dev-manual: Discourage the use of SRC_URI[md5sum]
SRC_URI[md5sum] has been deprecated for a long time. Discourage its use by removing it from examples and note that it should be replaced by SRC_URI[sha256sum] when updating recipes. Also mention that bitbake supports other checksums, though they are not commonly used. (From yocto-docs rev: 99d176aa9bd88750eab9314b9d8c941abeff6726) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/dev-manual/debugging.rst')
-rw-r--r--documentation/dev-manual/debugging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst
index fea2cb30a1..bd1e716b0b 100644
--- a/documentation/dev-manual/debugging.rst
+++ b/documentation/dev-manual/debugging.rst
@@ -327,7 +327,7 @@ BitBake has determined by doing the following:
327 the task. This list also includes indirect dependencies from 327 the task. This list also includes indirect dependencies from
328 variables depending on other variables, recursively:: 328 variables depending on other variables, recursively::
329 329
330 Task dependencies: ['PV', 'SRCREV', 'SRC_URI', 'SRC_URI[md5sum]', 'SRC_URI[sha256sum]', 'base_do_fetch'] 330 Task dependencies: ['PV', 'SRCREV', 'SRC_URI', 'SRC_URI[sha256sum]', 'base_do_fetch']
331 331
332 .. note:: 332 .. note::
333 333