From 9338817b0879f7791e8b1460b3b8830e9608d0fb Mon Sep 17 00:00:00 2001 From: breakings Date: Sun, 8 Aug 2021 13:31:53 +0800 Subject: [PATCH] Update runc to 1.0.1 This is the first stable release in the 1.0 branch, fixing a few medium and high priority issues with runc 1.0.0, including a few that affect Kubernetes' usage of libcontainer. Bugfixes: - Fixed occasional runc exec/run failure ("interrupted system call") on an Azure volume. ([#3074](https://github.com/opencontainers/runc/pull/3074)) - Fixed "unable to find groups ... token too long" error with /etc/group containing lines longer than 64K characters. ([#3079](https://github.com/opencontainers/runc/pull/3079)) - cgroup/systemd/v1: fix leaving cgroup frozen after Set if a parent cgroup is frozen. This is a regression in 1.0.0, not affecting runc itself but some of libcontainer users (e.g Kubernetes). ([#3085](https://github.com/opencontainers/runc/pull/3085)) - cgroupv2: bpf: Ignore inaccessible existing programs in case of permission error when handling replacement of existing bpf cgroup programs. This fixes a regression in 1.0.0, where some SELinux policies would block runc from being able to run entirely. ([#3087](https://github.com/opencontainers/runc/pull/3087)) - cgroup/systemd/v2: don't freeze cgroup on Set. ([#3092](https://github.com/opencontainers/runc/pull/3092)) - cgroup/systemd/v1: avoid unnecessary freeze on Set. ([#3093](https://github.com/opencontainers/runc/pull/3093)) --- utils/runc/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/runc/Makefile b/utils/runc/Makefile index fd056162e9..9ca23b122e 100644 --- a/utils/runc/Makefile +++ b/utils/runc/Makefile @@ -1,15 +1,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=runc -PKG_VERSION:=1.0.0-rc95 +PKG_VERSION:=1.0.1 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/opencontainers/runc/tar.gz/v${PKG_VERSION}? -PKG_HASH:=02dac7f1a0dcfe55dd9820df787adedf030060870354915e7bba86f8487ce93c -PKG_SOURCE_VERSION:=b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7 +PKG_HASH:=b25e4273a895af3239bc5e495a007266356038adfb34c4b94b4fc39627a89ad9 +PKG_SOURCE_VERSION:=4144b63817ebcc5b358fc2c8ef95f7cddd709aa7 PKG_MAINTAINER:=Gerard Ryan