mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 23:09:39 +01:00
Adds cve_check.py to BBIMPORTS so the functions it exposes will be correctly scanned for dependencies in the dependency scanner (From OE-Core rev: 52ead33c6b6e2532c57b7b28b862ba38b575f9e3) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
548 B
Python
16 lines
548 B
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from pkgutil import extend_path
|
|
__path__ = extend_path(__path__, __name__)
|
|
|
|
# Modules with vistorcode need to go first else anything depending on them won't be
|
|
# processed correctly (e.g. qa)
|
|
BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \
|
|
"packagegroup", "sstatesig", "lsb", "cachedpath", "license", \
|
|
"reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common", \
|
|
"cve_check"]
|