Skip to content

Commit 2e97c05

Browse files
committed
Update components
1 parent e248634 commit 2e97c05

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

meta-secret-vm/recipes-core/kms-query/kms-query.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LICENSE = "MIT"
44
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
55

66
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7-
SRCREV = "e8e32d68bf2c7db40d824f9c4d36c2250ecd281e"
7+
SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3"
88
S = "${WORKDIR}/git"
99
GO_IMPORT = "${S}"
1010

meta-secret-vm/recipes-core/opa/opa.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LICENSE = "MIT"
44
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
55

66
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7-
SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418"
7+
SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3"
88
S = "${WORKDIR}/git/opa"
99

1010
do_install() {

meta-secret-vm/recipes-core/secret-vm-attest-rest-server/secret-vm-attest-rest-server.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LICENSE = "MIT"
44
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
55

66
SRC_URI = "git://github.com/scrtlabs/secret-vm-attest-rest-server.git;branch=master;protocol=https"
7-
SRCREV = "b7e899a5d620e585edf67f538a8056e7b3a54a9a"
7+
SRCREV = "f4be8156b43ac88ea6db0e2f900c4cb883734bc8"
88

99
GO_IMPORT = "github.com/scrtlabs/secret-vm-attest-rest-server"
1010
GO_INSTALL = "${GO_IMPORT}"

meta-secret-vm/recipes-core/secret-vm-scripts/secret-vm-scripts.bb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LICENSE = "MIT"
44
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
55

66
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7-
SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418"
7+
SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3"
88
S = "${WORKDIR}/git"
99

1010
PACKAGES += "${PN}-gpu"
@@ -17,6 +17,7 @@ RDEPENDS:${PN} += "systemd \
1717
cryptsetup \
1818
e2fsprogs \
1919
attest-tool \
20+
signing-server \
2021
kms-query \
2122
crypt-tool"
2223

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
SUMMARY = "Signing server for SecretVM"
2+
DESCRIPTION = "Signing server for SecretVM"
3+
LICENSE = "MIT"
4+
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5+
6+
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7+
SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3"
8+
S = "${WORKDIR}/git"
9+
GO_IMPORT = "${S}"
10+
11+
inherit go
12+
13+
do_compile[network] = "1"
14+
15+
do_compile() {
16+
cd ${S}/signing_server
17+
go build -o signing-server
18+
}
19+
20+
do_install() {
21+
install -d ${D}${bindir}
22+
install -m 0755 ${S}/signing_server/signing-server ${D}${bindir}/
23+
}

0 commit comments

Comments
 (0)