mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
containerd: update to v1.2.0
refreshing the containerd support to 1.2.x. We have to tweak the package linking and update the go compile patch, but otherwise, the build is unchanged. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
parent
d63b33b18f
commit
f4853222b5
|
@ -1,11 +1,13 @@
|
||||||
SRCREV = "cfd04396dc68220d1cecbe686a6cc3aa5ce3667c"
|
SRCREV = "0190e5f3900227fc739afbc8f4a03df968dc337b"
|
||||||
SRC_URI = "git://github.com/containerd/containerd;nobranch=1 \
|
SRC_URI = "git://github.com/containerd/containerd;nobranch=1 \
|
||||||
file://0001-build-use-oe-provided-GO-and-flags.patch \
|
file://0001-build-use-oe-provided-GO-and-flags.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
include containerd.inc
|
include containerd.inc
|
||||||
|
|
||||||
CONTAINERD_VERSION = "v1.0.2"
|
LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=1269f40c0d099c21a871163984590d89"
|
||||||
|
|
||||||
|
CONTAINERD_VERSION = "v1.2.0"
|
||||||
|
|
||||||
PROVIDES += "virtual/containerd"
|
PROVIDES += "virtual/containerd"
|
||||||
RPROVIDES_${PN} = "virtual/containerd"
|
RPROVIDES_${PN} = "virtual/containerd"
|
||||||
|
|
|
@ -34,14 +34,24 @@ do_compile() {
|
||||||
ln -sf ./ ${S}/src/import/vendor/src
|
ln -sf ./ ${S}/src/import/vendor/src
|
||||||
|
|
||||||
mkdir -p ${S}/src/import/vendor/src/github.com/containerd/containerd/
|
mkdir -p ${S}/src/import/vendor/src/github.com/containerd/containerd/
|
||||||
|
mkdir -p ${S}/src/import/vendor/src/github.com/containerd/containerd/pkg/
|
||||||
|
mkdir -p ${S}/src/import/vendor/src/github.com/containerd/containerd/contrib/
|
||||||
# without this, the stress test parts of the build fail
|
# without this, the stress test parts of the build fail
|
||||||
cp ${S}/src/import/*.go ${S}/src/import/vendor/src/github.com/containerd/containerd
|
cp ${S}/src/import/*.go ${S}/src/import/vendor/src/github.com/containerd/containerd
|
||||||
|
|
||||||
for c in content errdefs fs images mount snapshots linux api runtimes defaults progress \
|
for c in content errdefs fs images mount snapshots linux api runtimes defaults progress \
|
||||||
protobuf reference diff platforms runtime remotes version archive dialer gc metadata \
|
protobuf reference diff platforms runtime remotes version archive dialer gc metadata \
|
||||||
metrics filters identifiers labels leases plugin server services \
|
metrics filters identifiers labels leases plugin server services \
|
||||||
cmd cio containers namespaces oci events log reaper sys rootfs; do
|
cmd cio containers namespaces oci events log reaper sys rootfs nvidia seed apparmor seccomp; do
|
||||||
|
if [ -d ${S}/src/import/${c} ]; then
|
||||||
ln -sfn ${S}/src/import/${c} ${S}/src/import/vendor/github.com/containerd/containerd/${c}
|
ln -sfn ${S}/src/import/${c} ${S}/src/import/vendor/github.com/containerd/containerd/${c}
|
||||||
|
fi
|
||||||
|
if [ -d ${S}/src/import/pkg/${c} ]; then
|
||||||
|
ln -sfn ${S}/src/import/pkg/${c} ${S}/src/import/vendor/github.com/containerd/containerd/pkg/${c}
|
||||||
|
fi
|
||||||
|
if [ -d ${S}/src/import/contrib/${c} ]; then
|
||||||
|
ln -sfn ${S}/src/import/contrib/${c} ${S}/src/import/vendor/github.com/containerd/containerd/contrib/${c}
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
export GOPATH="${S}/src/import/.gopath:${S}/src/import/vendor:${STAGING_DIR_TARGET}/${prefix}/local/go"
|
export GOPATH="${S}/src/import/.gopath:${S}/src/import/vendor:${STAGING_DIR_TARGET}/${prefix}/local/go"
|
||||||
|
|
|
@ -1,26 +1,45 @@
|
||||||
From e31acef290181434efaf47e70db7ad0d92dbe300 Mon Sep 17 00:00:00 2001
|
From 408e8b526d490af817a64b7220e8e2c3789de58f Mon Sep 17 00:00:00 2001
|
||||||
From: Bruce Ashfield <bruce.ashfield@windriver.com>
|
From: Bruce Ashfield <bruce.ashfield@gmail.com>
|
||||||
Date: Thu, 19 Apr 2018 17:09:51 -0400
|
Date: Sun, 10 Feb 2019 23:46:06 +0000
|
||||||
Subject: [PATCH] build: use oe provided GO and flags
|
Subject: [PATCH] build: use oe provided GO and flags
|
||||||
|
|
||||||
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
|
We want to use the go compiler as defined in the oe-enviroment, not the
|
||||||
|
generic call to 'go'. Without changing this, we'll get things like cgo
|
||||||
|
errors and invalid flag combos.
|
||||||
|
|
||||||
|
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
||||||
---
|
---
|
||||||
Makefile | 2 +-
|
Makefile | 8 ++++----
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/import/Makefile b/src/import/Makefile
|
diff --git a/src/import/Makefile b/src/import/Makefile
|
||||||
index 9d8cf8a18fbc..492d033fe2a7 100644
|
index 8e680133..fd7d2813 100644
|
||||||
--- a/src/import/Makefile
|
--- a/src/import/Makefile
|
||||||
+++ b/src/import/Makefile
|
+++ b/src/import/Makefile
|
||||||
@@ -134,7 +134,7 @@ bin/%: cmd/% FORCE
|
@@ -179,19 +179,19 @@ FORCE:
|
||||||
|
# Build a binary from a cmd.
|
||||||
|
bin/%: cmd/% FORCE
|
||||||
|
@echo "$(WHALE) $@${BINARY_SUFFIX}"
|
||||||
|
- @go build ${DEBUG_GO_GCFLAGS} ${GO_GCFLAGS} ${GO_BUILD_FLAGS} -o $@${BINARY_SUFFIX} ${GO_LDFLAGS} ${GO_TAGS} ./$<
|
||||||
|
+ @$(GO) build ${GO_BUILD_FLAGS} ${DEBUG_GO_GCFLAGS} ${GO_GCFLAGS} ${GO_BUILD_FLAGS} -o $@${BINARY_SUFFIX} ${GO_LDFLAGS} ${GO_TAGS} ./$<
|
||||||
|
|
||||||
bin/containerd-shim: cmd/containerd-shim FORCE # set !cgo and omit pie for a static shim build: https://github.com/golang/go/issues/17789#issuecomment-258542220
|
bin/containerd-shim: cmd/containerd-shim FORCE # set !cgo and omit pie for a static shim build: https://github.com/golang/go/issues/17789#issuecomment-258542220
|
||||||
@echo "$(WHALE) bin/containerd-shim"
|
@echo "$(WHALE) bin/containerd-shim"
|
||||||
- @CGO_ENABLED=0 go build -o bin/containerd-shim ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim
|
- @CGO_ENABLED=0 go build ${GO_BUILD_FLAGS} -o bin/containerd-shim ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim
|
||||||
+ @$(GO) build -o bin/containerd-shim ${SHIM_GO_LDFLAGS} $(GOBUILDFLAGS) ${GO_TAGS} ./cmd/containerd-shim
|
+ @$(GO) build ${GO_BUILD_FLAGS} -o bin/containerd-shim ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim
|
||||||
|
|
||||||
|
bin/containerd-shim-runc-v1: cmd/containerd-shim-runc-v1 FORCE # set !cgo and omit pie for a static shim build: https://github.com/golang/go/issues/17789#issuecomment-258542220
|
||||||
|
@echo "$(WHALE) bin/containerd-shim-runc-v1"
|
||||||
|
- @CGO_ENABLED=0 go build ${GO_BUILD_FLAGS} -o bin/containerd-shim-runc-v1 ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim-runc-v1
|
||||||
|
+ @$(GO) build ${GO_BUILD_FLAGS} -o bin/containerd-shim-runc-v1 ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim-runc-v1
|
||||||
|
|
||||||
|
bin/containerd-shim-runhcs-v1: cmd/containerd-shim-runhcs-v1 FORCE # set !cgo and omit pie for a static shim build: https://github.com/golang/go/issues/17789#issuecomment-258542220
|
||||||
|
@echo "$(WHALE) bin/containerd-shim-runhcs-v1${BINARY_SUFFIX}"
|
||||||
|
- @CGO_ENABLED=0 go build ${GO_BUILD_FLAGS} -o bin/containerd-shim-runhcs-v1${BINARY_SUFFIX} ${SHIM_GO_LDFLAGS} ${GO_TAGS} ./cmd/containerd-shim-runhcs-v1
|
||||||
|
+ @$(GO) build ${GO_BUILD_FLAGS} -o bin/containerd-shim-runhcs-v1${BINARY_SUFFIX} ${SHIM_GO_LDFLAGS} $(GOBUILDFLAGS) ${GO_TAGS} ./cmd/containerd-shim-runhcs-v1
|
||||||
|
|
||||||
binaries: $(BINARIES) ## build binaries
|
binaries: $(BINARIES) ## build binaries
|
||||||
@echo "$(WHALE) $@"
|
@echo "$(WHALE) $@"
|
||||||
--
|
--
|
||||||
2.4.0.53.g8440f74
|
2.19.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user