File tree Expand file tree Collapse file tree 5 files changed +28
-4
lines changed
meta-secret-vm/recipes-core
secret-vm-attest-rest-server Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
4
4
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR} /MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5
5
6
6
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7
- SRCREV = "e8e32d68bf2c7db40d824f9c4d36c2250ecd281e "
7
+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
8
8
S = "${WORKDIR} /git"
9
9
GO_IMPORT = "${S} "
10
10
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
4
4
LIC_FILES_CHKSUM = "file://${COREBASE} /meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
5
5
6
6
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7
- SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418 "
7
+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
8
8
S = "${WORKDIR} /git/opa"
9
9
10
10
do_install () {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
4
4
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR} /MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5
5
6
6
SRC_URI = "git://github.com/scrtlabs/secret-vm-attest-rest-server.git;branch=master;protocol=https"
7
- SRCREV = "b7e899a5d620e585edf67f538a8056e7b3a54a9a "
7
+ SRCREV = "f4be8156b43ac88ea6db0e2f900c4cb883734bc8 "
8
8
9
9
GO_IMPORT = "github.com/scrtlabs/secret-vm-attest-rest-server"
10
10
GO_INSTALL = "${GO_IMPORT} "
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
4
4
LIC_FILES_CHKSUM = "file://${COREBASE} /meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
5
5
6
6
SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7
- SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418 "
7
+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
8
8
S = "${WORKDIR} /git"
9
9
10
10
PACKAGES += "${PN} -gpu"
@@ -17,6 +17,7 @@ RDEPENDS:${PN} += "systemd \
17
17
cryptsetup \
18
18
e2fsprogs \
19
19
attest-tool \
20
+ signing-server \
20
21
kms-query \
21
22
crypt-tool"
22
23
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments