Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meta-dts-distro/recipes-dts/dts-scripts/dts-scripts_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSES/Apache-2.0.txt;md5=c846ebb396f8b174b10ded477
PV = "0.1+git${SRCPV}"

SRC_URI = "git://github.com/Dasharo/dts-scripts;protocol=https;branch=main"
SRCREV = "eb14a1437e5c08cf579464c2d6b199c991f6d1ab"
SRCREV = "7872d8725cf6575bde1da669d34384567abd7f40"

S = "${WORKDIR}/git"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RDEPENDS:${PN}-tools-dts = " \
dasharo-ectool \
txt-suite \
bg-suite \
bg-prov \
dasharo-configuration-utility \
dts-scripts \
firmware-binaries \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SUMMARY = "Converged Security Suite's bg-prov"

@DaniilKl DaniilKl Dec 5, 2025

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The recipe works, but since 9elements/converged-security-suite#413 I guess the only way to verify if the bg-prov version is correct is to check checksum:

root@DasharoToolsSuite:~# sha256sum /usr/bin/bg-prov
85d8a01708b915c0f7c1aa1af37aaa771cb7381a1ac325604af93dec7892a487  /usr/bin/bg-prov

This is a non-blocking comment.

HOMEPAGE = "https://github.com/9elements/converged-security-suite"
SECTION = "devel"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"

SRC_URI = "https://github.com/9elements/converged-security-suite/releases/download/v${PV}/artifacts-amd64.zip"
SRC_URI[sha256sum] = "58362a5976e68c31e20ecd34338683826c920bb2f34c717dd693aecbb1f7db3d"

S = "${WORKDIR}"

do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/bg-prov ${D}${bindir}
}

FILES:${PN} += "${bindir}/bg-prov"