Turn off Yocto control test cell

Where do I point BB_STRICT_CHECKSUM = "0" in Yocto to disable checksum verification of the source code?

I get:

ERROR: No checksum specified for /PATH/TO/ti-linux-kernel.git, please add at least one to the     recipe:
SRC_URI[md5sum] = "e8e287fd725bea8b4220ebe9094cda86"
SRC_URI[sha256sum] = "4a4f522b05e6c1fcd1872f2fc7c82061dfdc4a19c5f866858005daa198f89bbb"
+4
source share
3 answers

I do not see the BB_STRICT_CHECKSUM variable in the Yocto documentation.

As far as I can tell, you don't need to specify checksums SRC_URI[...]for the git repository. In your recipe for beatbox, does it have it /PATH/TO/ti-linux-kernel.git git://at the beginning? Bitbake uses this to determine the type of SCM tool used. If you want to access git reposition via http, you must specify

SRC_URI = "git://server.com/PATH/TO/ti-linux-kernel.git;protocol=http"

Worried, this is only outlined in the documentation for SRC_URI .

SRC_URI [md5sum] SRC_URI [sha256sum] , tarballs , . tarball (, http://server.com/path/to/some-project.tar.gz), ,

... , . . , .

, .

+4

BB_STRICT_CHECKSUM - , .bb . , .bb , SRC_URI, :

BB_STRICT_CHECKSUM = "0"

(: " , blah/blah/blah, : Missing SRC_URI ) .

,

+4

https://some_path

SRC_URI[md5sum] = "e8e287fd725bea8b4220ebe9094cda86"
SRC_URI[sha256sum] = " 4a4f522b05e6c1fcd1872f2fc7c82061dfdc4a19c5f866858005daa198f89bbb"

git://some_path, md5sum ,

LIC_FILES_CHKSUM = "file://LICENSE;md5=a77c327d4d1da3707d42dde9725d4769"
0

All Articles