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"
44LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR} /MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
55
66SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7- SRCREV = "e8e32d68bf2c7db40d824f9c4d36c2250ecd281e "
7+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
88S = "${WORKDIR} /git"
99GO_IMPORT = "${S} "
1010
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
44LIC_FILES_CHKSUM = "file://${COREBASE} /meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
55
66SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7- SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418 "
7+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
88S = "${WORKDIR} /git/opa"
99
1010do_install () {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
44LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR} /MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
55
66SRC_URI = "git://github.com/scrtlabs/secret-vm-attest-rest-server.git;branch=master;protocol=https"
7- SRCREV = "b7e899a5d620e585edf67f538a8056e7b3a54a9a "
7+ SRCREV = "f4be8156b43ac88ea6db0e2f900c4cb883734bc8 "
88
99GO_IMPORT = "github.com/scrtlabs/secret-vm-attest-rest-server"
1010GO_INSTALL = "${GO_IMPORT} "
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LICENSE = "MIT"
44LIC_FILES_CHKSUM = "file://${COREBASE} /meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
55
66SRC_URI = "git://github.com/scrtlabs/secret-vm-ops.git;branch=master;protocol=https"
7- SRCREV = "0d8b892392a9f86ab53c390bf071c171aa824418 "
7+ SRCREV = "0688766e52cfd4512fc414bf43c200c5ca5b61f3 "
88S = "${WORKDIR} /git"
99
1010PACKAGES += "${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
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