diff options
author | Peter Marko <peter.marko@siemens.com> | 2024-07-14 11:36:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-07-16 11:56:53 +0100 |
commit | 49497a9e469c22dd0a7ba1f8c1a0b6856e67ef3f (patch) | |
tree | fae3d37be402b8f0a9cd83e8b65083697799d96a /meta/recipes-devtools | |
parent | d85a10e4985f4809272487c5dff93c7b78f73abb (diff) | |
download | poky-49497a9e469c22dd0a7ba1f8c1a0b6856e67ef3f.tar.gz |
libstd-rs,rust-cross-canadian: set CVE_PRODUCT to rust
These recipes come from rust sources and CVEs are reported for them
under rust-lang:rust vendor:product touple.
Especially libstd-rs needs correct CVE_PRODUCT as is it installed on
target devices (being statically linked to rust compiled binaries).
before:
cargo: CVE_PRODUCT="cargo"
cargo-c-native: CVE_PRODUCT="cargo-c"
libstd-rs: CVE_PRODUCT="libstd-rs"
rust: CVE_PRODUCT="rust"
rust-cross-canadian: CVE_PRODUCT="rust-cross-canadian-<arch>"
rust-llvm: CVE_PRODUCT="rust-llvm"
after:
cargo: CVE_PRODUCT="cargo"
cargo-c-native: CVE_PRODUCT="cargo-c"
libstd-rs: CVE_PRODUCT="rust"
rust: CVE_PRODUCT="rust"
rust-cross-canadian-x86-64: CVE_PRODUCT="rust"
rust-llvm: CVE_PRODUCT="rust-llvm"
Product for rust-llvm is uncertain and, should be handled in another
commit if it is desired to align it, too.
sqlite> select vendor, product, count(product) from products where vendor="rust-lang" group by product;
rust-lang|async-h1|2
rust-lang|cargo|5
rust-lang|future-utils|2
rust-lang|futures-task|2
rust-lang|mdbook|1
rust-lang|regex|2
rust-lang|rsa|2
rust-lang|rust|45
rust-lang|socket2|1
(From OE-Core rev: e8cf1df16a6ec2785cacaf608bec5cd8496103af)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/rust/libstd-rs_1.75.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/rust/rust-cross-canadian.inc | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rust/libstd-rs_1.75.0.bb b/meta/recipes-devtools/rust/libstd-rs_1.75.0.bb index 5fc6fb97bb..14161714f2 100644 --- a/meta/recipes-devtools/rust/libstd-rs_1.75.0.bb +++ b/meta/recipes-devtools/rust/libstd-rs_1.75.0.bb | |||
@@ -15,6 +15,8 @@ S = "${RUSTSRC}/library/sysroot" | |||
15 | RUSTLIB_DEP = "" | 15 | RUSTLIB_DEP = "" |
16 | inherit cargo | 16 | inherit cargo |
17 | 17 | ||
18 | CVE_PRODUCT = "rust" | ||
19 | |||
18 | DEPENDS:append:libc-musl = " libunwind" | 20 | DEPENDS:append:libc-musl = " libunwind" |
19 | # rv32 does not have libunwind ported yet | 21 | # rv32 does not have libunwind ported yet |
20 | DEPENDS:remove:riscv32 = "libunwind" | 22 | DEPENDS:remove:riscv32 = "libunwind" |
diff --git a/meta/recipes-devtools/rust/rust-cross-canadian.inc b/meta/recipes-devtools/rust/rust-cross-canadian.inc index f962437d6b..c34b839d15 100644 --- a/meta/recipes-devtools/rust/rust-cross-canadian.inc +++ b/meta/recipes-devtools/rust/rust-cross-canadian.inc | |||
@@ -1,5 +1,6 @@ | |||
1 | SUMMARY = "Rust compiler and runtime libaries (cross-canadian for ${TARGET_ARCH} target)" | 1 | SUMMARY = "Rust compiler and runtime libaries (cross-canadian for ${TARGET_ARCH} target)" |
2 | PN = "rust-cross-canadian-${TRANSLATED_TARGET_ARCH}" | 2 | PN = "rust-cross-canadian-${TRANSLATED_TARGET_ARCH}" |
3 | CVE_PRODUCT = "rust" | ||
3 | 4 | ||
4 | inherit rust-target-config | 5 | inherit rust-target-config |
5 | inherit rust-common | 6 | inherit rust-common |