From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 02276158089 for ; Wed, 10 Nov 2021 10:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB5B32BC070; Wed, 10 Nov 2021 10:59:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A351C2BC070 for ; Wed, 10 Nov 2021 10:59:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B72B534301F for ; Wed, 10 Nov 2021 10:59:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 201AC1C8 for ; Wed, 10 Nov 2021 10:59:51 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1636541864.6d71e158d712f6a332418e0795cf68a56e242a69.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/firecracker-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild X-VCS-Directories: app-emulation/firecracker-bin/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6d71e158d712f6a332418e0795cf68a56e242a69 X-VCS-Branch: master Date: Wed, 10 Nov 2021 10:59:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bea1c459-c444-41fd-acda-2a798aa42569 X-Archives-Hash: 761ea7e588664fabe90ebd0118529bc5 commit: 6d71e158d712f6a332418e0795cf68a56e242a69 Author: Sebastian Hamann ares-macrotechnology com> AuthorDate: Sun Nov 7 12:51:04 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Nov 10 10:57:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d71e158 app-emulation/firecracker-bin: Drop check for kernel VSOCK support Firecracker does not use AF_VSOCK on the host, only on the guest. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Sebastian Hamann ares-macrotechnology.com> Closes: https://github.com/gentoo/gentoo/pull/22857 Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild | 5 +---- app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild | 5 +---- app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild b/app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild index 23b5841d8c5..b52d481d808 100644 --- a/app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild +++ b/app-emulation/firecracker-bin/firecracker-bin-0.24.5.ebuild @@ -36,7 +36,7 @@ pkg_pretend() { if ! linux_config_exists; then eerror "Unable to check your kernel for KVM support" else - CONFIG_CHECK="~KVM ~TUN ~BRIDGE ~VHOST_VSOCK" + CONFIG_CHECK="~KVM ~TUN ~BRIDGE" ERROR_KVM="You must enable KVM in your kernel to continue" ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in" ERROR_KVM_AMD+=" your kernel configuration." @@ -47,9 +47,6 @@ pkg_pretend() { ERROR_TUN+=" virtual network devices." ERROR_BRIDGE="You will also need support for 802.1d" ERROR_BRIDGE+=" Ethernet Bridging for some network configurations." - ERROR_VHOST_VSOCK="To use AF_VSOCK sockets for communication" - ERROR_VHOST_VSOCK+=" between host and guest, you will need to enable" - ERROR_VHOST_VSOCK+=" the vhost virtio-vsock driver in your kernel." if use amd64 || use amd64-linux; then if grep -q AuthenticAMD /proc/cpuinfo; then diff --git a/app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild b/app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild index 23b5841d8c5..b52d481d808 100644 --- a/app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild +++ b/app-emulation/firecracker-bin/firecracker-bin-0.25.0.ebuild @@ -36,7 +36,7 @@ pkg_pretend() { if ! linux_config_exists; then eerror "Unable to check your kernel for KVM support" else - CONFIG_CHECK="~KVM ~TUN ~BRIDGE ~VHOST_VSOCK" + CONFIG_CHECK="~KVM ~TUN ~BRIDGE" ERROR_KVM="You must enable KVM in your kernel to continue" ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in" ERROR_KVM_AMD+=" your kernel configuration." @@ -47,9 +47,6 @@ pkg_pretend() { ERROR_TUN+=" virtual network devices." ERROR_BRIDGE="You will also need support for 802.1d" ERROR_BRIDGE+=" Ethernet Bridging for some network configurations." - ERROR_VHOST_VSOCK="To use AF_VSOCK sockets for communication" - ERROR_VHOST_VSOCK+=" between host and guest, you will need to enable" - ERROR_VHOST_VSOCK+=" the vhost virtio-vsock driver in your kernel." if use amd64 || use amd64-linux; then if grep -q AuthenticAMD /proc/cpuinfo; then diff --git a/app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild b/app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild index 11497d56c91..7c7a5f1bce4 100644 --- a/app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild +++ b/app-emulation/firecracker-bin/firecracker-bin-0.25.1.ebuild @@ -37,7 +37,7 @@ pkg_pretend() { eerror "Unable to check your kernel for KVM support" else CONFIG_CHECK="~KVM ~TUN ~BRIDGE" - CONFIG_CHECK="~KVM ~TUN ~BRIDGE ~VHOST_VSOCK" + CONFIG_CHECK="~KVM ~TUN ~BRIDGE" ERROR_KVM_AMD="If you have an AMD CPU, you must enable KVM_AMD in" ERROR_KVM_AMD+=" your kernel configuration." ERROR_KVM_INTEL="If you have an Intel CPU, you must enable" @@ -47,9 +47,6 @@ pkg_pretend() { ERROR_TUN+=" virtual network devices." ERROR_BRIDGE="You will also need support for 802.1d" ERROR_BRIDGE+=" Ethernet Bridging for some network configurations." - ERROR_VHOST_VSOCK="To use AF_VSOCK sockets for communication" - ERROR_VHOST_VSOCK+=" between host and guest, you will need to enable" - ERROR_VHOST_VSOCK+=" the vhost virtio-vsock driver in your kernel." if use amd64 || use amd64-linux; then if grep -q AuthenticAMD /proc/cpuinfo; then