diff options
| author | Joshua Watt <jpewhacker@gmail.com> | 2025-04-07 15:54:11 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-04-10 11:05:34 +0100 |
| commit | 920efbf5197c0a36516d842f5cc88fa319b76442 (patch) | |
| tree | c1f94d106cb0a109cb747aead2205b4245155bf1 | |
| parent | 8bb018f1d18111e76e349f00ef23927d1dc87045 (diff) | |
| download | poky-920efbf5197c0a36516d842f5cc88fa319b76442.tar.gz | |
lib: oe: Add cve_check to BBIMPORTS
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>
| -rw-r--r-- | meta/lib/oe/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py index 3179a3f3d2..a55694669d 100644 --- a/meta/lib/oe/__init__.py +++ b/meta/lib/oe/__init__.py | |||
| @@ -11,4 +11,5 @@ __path__ = extend_path(__path__, __name__) | |||
| 11 | # processed correctly (e.g. qa) | 11 | # processed correctly (e.g. qa) |
| 12 | BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \ | 12 | BBIMPORTS = ["qa", "data", "path", "utils", "types", "package", "packagedata", \ |
| 13 | "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \ | 13 | "packagegroup", "sstatesig", "lsb", "cachedpath", "license", \ |
| 14 | "reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common"] | 14 | "reproducible", "rust", "buildcfg", "go", "spdx30_tasks", "spdx_common", \ |
| 15 | "cve_check"] | ||
