summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-10-11 13:15:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-24 17:35:43 +0100
commit53ee27a1c5b589cba874f674c428e1a36557cc3b (patch)
tree6693911bb3ba7e168973f349e2b561ca2b4e485a /bitbake
parentcd1b27291d4af5dfe8e66ca09d4fede341921ea0 (diff)
downloadpoky-53ee27a1c5b589cba874f674c428e1a36557cc3b.tar.gz
doc: update manual for checksum changes
Document the ability to use SRC_URI parameters for checksums (Bitbake rev: 0a6443f9e1d07865c9fd1dfc0b4622eb1c4c3f3a) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/doc/manual/usermanual.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/doc/manual/usermanual.xml b/bitbake/doc/manual/usermanual.xml
index 3a3af6dee8..687503b1cb 100644
--- a/bitbake/doc/manual/usermanual.xml
+++ b/bitbake/doc/manual/usermanual.xml
@@ -388,7 +388,7 @@ ftp://.*/.* http://somemirror.org/sources/ \n \
388http://.*/.* http://somemirror.org/sources/ \n \ 388http://.*/.* http://somemirror.org/sources/ \n \
389https://.*/.* http://somemirror.org/sources/ \n"</screen></para> 389https://.*/.* http://somemirror.org/sources/ \n"</screen></para>
390 390
391 <para>Non-local downloaded output is placed into the directory specified by the <varname>DL_DIR</varname>. For non local downloads the code can check checksums for the download to ensure the file has been downloaded correctly. These are specified in the form <varname>SRC_URI[md5sum]</varname> for the md5 checksum and <varname>SRC_URI[sha256sum]</varname> for the sha256 checksum. If <varname>BB_STRICT_CHECKSUM</varname> is set, any download without a checksum will trigger an error message. In cases where multiple files are listed in SRC_URI, the name parameter is used assign names to the urls and these are then specified in the checksums in the form SRC_URI[name.sha256sum].</para> 391 <para>Non-local downloaded output is placed into the directory specified by the <varname>DL_DIR</varname>. For non local archive downloads the code can verify sha256 and md5 checksums for the download to ensure the file has been downloaded correctly. These may be specified either in the form <varname>SRC_URI[md5sum]</varname> for the md5 checksum and <varname>SRC_URI[sha256sum]</varname> for the sha256 checksum or as parameters on the SRC_URI such as SRC_URI="http://example.com/foobar.tar.bz2;md5sum=4a8e0f237e961fd7785d19d07fdb994d". If <varname>BB_STRICT_CHECKSUM</varname> is set, any download without a checksum will trigger an error message. In cases where multiple files are listed in SRC_URI, the name parameter is used assign names to the urls and these are then specified in the checksums in the form SRC_URI[name.sha256sum].</para>
392 392
393 </section> 393 </section>
394 394