From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1014E2D94A7 for ; Mon, 11 Aug 2025 20:12:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754943153; cv=none; b=Xsuo+MSv0RDsKXBwF1pc8CXqwZyT7ydExQ7gkorgVl7UifJU1er9auMUQE7kxynZ/p8RRhJCiXiDgF+ywLP7ptJAm6yn4g/9jV9AirNfFmk3JYOxGgEJL/h3yQdsxzLHF/B/IHKsdUm9am7gaEX+P851xbbAUmTLosRpyo9D5a4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754943153; c=relaxed/simple; bh=rYff33oh5jK4sMvlpniPc/f9miQyzee1FfhWvPEGxDk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=E/miPqw+yBCZWG788gjPU033ngXEEugP1eIEpSr60eOu3f0sJcx6BBi8+t8KM/OTE35TqCl9VIuX4CudlhJBaFsLRwaYY/zC2badWIi95S6pm//HQo6U4cDnqXT8ar2u2JVeZcnhI6fB1LkkoMYZdX1RAUiOQpgP43q/B0i+2O8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=yIzsyhcg; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="yIzsyhcg" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=YG51OjNp0Cs+0q6wylhQu529JVqAxSGaPHXnGxg1n5I=; b=yIzsyhcgMCCB0tQM3XpKfbCljK HmyHsqyAfDkSr0xkUNJgTIZ2C7tdIiLeufNqUK92XWId55EIo39Vz60FgzdlYZzsZIZ+YzpaP9Kfg Yx85wxqtYGsLcx6aYUloj/eE3fnt/Mgo958uWRhANonE8bp/qcoOAMY+Nk8bQkLcvhN+xPGwmix6J OP/cflxEkUHaWE4a5HkOC/UdqFUby4v4v5+eBv0xK5w8CBkz8bR5tKTilhm55wZAYKkjMbH17A/M8 EsgLJrltvW3BY6gGLC/U1HgdEXts7k3KX7Bhk0ayiUruLQRZccShIw+KxHH5YoF0mnh+avuuoj3Um KMEKBHTg==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1ulYsh-00000009040-24fb; Mon, 11 Aug 2025 20:12:31 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 5/8] guestfs: add OVMF package for UEFI firmware support Date: Mon, 11 Aug 2025 13:12:27 -0700 Message-ID: <20250811201230.2145164-6-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250811201230.2145164-1-mcgrof@kernel.org> References: <20250811201230.2145164-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain The OVMF (Open Virtual Machine Firmware) package provides UEFI firmware files required by libvirt when creating VMs with UEFI support. Without this package, libvirt fails with: libvirtError: operation failed: Unable to find 'efi' firmware that is compatible with the current configuration Add ovmf to the Debian dependencies to ensure UEFI firmware is available for VM creation, particularly when guestfs_requires_uefi is enabled. Generated-by: Claude AI Signed-off-by: Luis Chamberlain --- playbooks/roles/guestfs/tasks/install-deps/debian/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/guestfs/tasks/install-deps/debian/main.yml b/playbooks/roles/guestfs/tasks/install-deps/debian/main.yml index dc69c65..1626e75 100644 --- a/playbooks/roles/guestfs/tasks/install-deps/debian/main.yml +++ b/playbooks/roles/guestfs/tasks/install-deps/debian/main.yml @@ -17,4 +17,5 @@ - isc-dhcp-client - python3-lxml - python3-libvirt + - ovmf state: present -- 2.47.2