diff options
| -rw-r--r-- | recipes-containers/cri-tools/cri-tools_git.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-containers/cri-tools/cri-tools_git.bb b/recipes-containers/cri-tools/cri-tools_git.bb index 51ecc205..af88998a 100644 --- a/recipes-containers/cri-tools/cri-tools_git.bb +++ b/recipes-containers/cri-tools/cri-tools_git.bb | |||
| @@ -16,7 +16,7 @@ What is not in scope for this project? \ | |||
| 16 | non-exist on the kube-apiserver. \ | 16 | non-exist on the kube-apiserver. \ |
| 17 | " | 17 | " |
| 18 | 18 | ||
| 19 | SRCREV_cri-tools = "77d02a0356e9e1dca58d44e54dd0799e89856387" | 19 | SRCREV_cri-tools = "4daea44918cc34b63617c6c9e9923f43d47ddfdd" |
| 20 | SRC_URI = "\ | 20 | SRC_URI = "\ |
| 21 | git://github.com/kubernetes-sigs/cri-tools.git;branch=master;name=cri-tools;protocol=https \ | 21 | git://github.com/kubernetes-sigs/cri-tools.git;branch=master;name=cri-tools;protocol=https \ |
| 22 | file://0001-build-allow-environmental-CGO-settings-and-pass-dont.patch \ | 22 | file://0001-build-allow-environmental-CGO-settings-and-pass-dont.patch \ |
| @@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c2 | |||
| 27 | 27 | ||
| 28 | GO_IMPORT = "import" | 28 | GO_IMPORT = "import" |
| 29 | 29 | ||
| 30 | PV = "1.24.2+git${SRCREV_cri-tools}" | 30 | PV = "1.26.1+git${SRCREV_cri-tools}" |
| 31 | 31 | ||
| 32 | RPROVIDES:${PN} += "crictl" | 32 | RPROVIDES:${PN} += "crictl" |
| 33 | PACKAGES =+ "${PN}-critest" | 33 | PACKAGES =+ "${PN}-critest" |
| @@ -63,7 +63,10 @@ do_compile() { | |||
| 63 | 63 | ||
| 64 | do_install() { | 64 | do_install() { |
| 65 | install -d ${D}${bindir} | 65 | install -d ${D}${bindir} |
| 66 | install -m 755 -D ${S}/src/import/build/bin/* ${D}/${bindir} | 66 | for f in $(find ${S}/src/import/build/bin/ -type f); do |
| 67 | echo "installing $f to ${D}/${bindir}" | ||
| 68 | install -m 755 -D $f ${D}/${bindir} | ||
| 69 | done | ||
| 67 | } | 70 | } |
| 68 | 71 | ||
| 69 | FILES:${PN}-critest = "${bindir}/critest" | 72 | FILES:${PN}-critest = "${bindir}/critest" |
