From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id C85911FF0A7 for ; Mon, 17 Aug 2026 13:59:52 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 7F73E23D80; Mon, 17 Aug 2026 13:59:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=genua.de; s=202307; t=1786967964; bh=EYBv1eS1wB+Pl+ky50khqxQkzMCOLlVUCXdPvn/6zdM=; h=Date:From:To:Subject:References:In-Reply-To:From; b=QWcq26k5ePeEj4xyeSzQKh4yIQBpMu4nZ+CVlY9g6VyC8ta68wjqXUzXIZcC7ngvf d9xV2FZMLGyYZcGCTh8mzbSH3bJQGxrw8y4FZqgcRy1QZG4Yf74uYEtVDtXCLTUGP+ NoCgfiweioG9UUJ11jVc2oJXdhQlcZHORtD1Dogwp7js/zje+zTTdBV8AAbrfxb/9Y DRarrdPWXhtLXu8djse6YjV53vAy3w8otDPYCtk6dTra14dUkaDOooIWozschgrEGT cbAu4HZOzVxpAb6YFkwZyGF5Ln+0yT9qh9BuFek438EPbRYpmFfl6gWt3VceajSDiM qu8wFfh3LtTxw== Date: Mon, 17 Aug 2026 13:59:23 +0200 From: Christian Ludwig To: Subject: [PATCH pve-storage 3/13] Allow efi-firmware in file-based storage Message-ID: References: MIME-Version: 1.0 In-Reply-To: X-Originating-IP: [192.168.217.185] X-ClientProxiedBy: kch1-mta09.win.genua.de (10.208.16.109) To kch1-mta07.win.genua.de (10.208.16.107) Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg="sha-256"; boundary="----720305064F0765DBFD524815DD79095B" X-SPAM-LEVEL: Spam detection results: 0 AWL 0.218 Adjusted score from AWL reputation of From: address DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain DMARC_PASS -0.1 DMARC pass policy SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record UNPARSEABLE_RELAY 0.001 Informational: message has unparseable relay lines Message-ID-Hash: ND34P3Q6HAXCFQ4AOTANDJ2MILY4SM4I X-Message-ID-Hash: ND34P3Q6HAXCFQ4AOTANDJ2MILY4SM4I X-MailFrom: christian_ludwig@genua.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Content-Filtered-By: Mailman/MimeDel 3.3.10 X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: ------720305064F0765DBFD524815DD79095B Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Enable efi-firmware files to be placed in file-based storage backends. Signed-off-by: Christian Ludwig --- src/PVE/Storage/BTRFSPlugin.pm | 1 + src/PVE/Storage/CIFSPlugin.pm | 1 + src/PVE/Storage/CephFSPlugin.pm | 2 +- src/PVE/Storage/DirPlugin.pm | 1 + src/PVE/Storage/NFSPlugin.pm | 1 + 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/PVE/Storage/BTRFSPlugin.pm b/src/PVE/Storage/BTRFSPlugin.pm index fb47aa0..2f999b2 100644 --- a/src/PVE/Storage/BTRFSPlugin.pm +++ b/src/PVE/Storage/BTRFSPlugin.pm @@ -41,6 +41,7 @@ sub plugindata { snippets => 1, none => 1, import => 1, + 'efi-firmware' => 1, }, { images => 1, rootdir => 1 }, ], diff --git a/src/PVE/Storage/CIFSPlugin.pm b/src/PVE/Storage/CIFSPlugin.pm index 54f0f4e..724e5f0 100644 --- a/src/PVE/Storage/CIFSPlugin.pm +++ b/src/PVE/Storage/CIFSPlugin.pm @@ -121,6 +121,7 @@ sub plugindata { backup => 1, snippets => 1, import => 1, + 'efi-firmware' => 1, }, { images => 1 }, ], diff --git a/src/PVE/Storage/CephFSPlugin.pm b/src/PVE/Storage/CephFSPlugin.pm index fbc9711..1a4747a 100644 --- a/src/PVE/Storage/CephFSPlugin.pm +++ b/src/PVE/Storage/CephFSPlugin.pm @@ -117,7 +117,7 @@ sub type { sub plugindata { return { content => - [{ vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1 }, { backup => 1 }], + [{ vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1, 'efi-firmware' => 1 }, { backup => 1 }], 'sensitive-properties' => { keyring => 1 }, }; } diff --git a/src/PVE/Storage/DirPlugin.pm b/src/PVE/Storage/DirPlugin.pm index 80c4a03..ab7911d 100644 --- a/src/PVE/Storage/DirPlugin.pm +++ b/src/PVE/Storage/DirPlugin.pm @@ -34,6 +34,7 @@ sub plugindata { snippets => 1, none => 1, import => 1, + 'efi-firmware' => 1, }, { images => 1, rootdir => 1 }, ], diff --git a/src/PVE/Storage/NFSPlugin.pm b/src/PVE/Storage/NFSPlugin.pm index 4cc02c9..e8a3661 100644 --- a/src/PVE/Storage/NFSPlugin.pm +++ b/src/PVE/Storage/NFSPlugin.pm @@ -62,6 +62,7 @@ sub plugindata { backup => 1, snippets => 1, import => 1, + 'efi-firmware' => 1, }, { images => 1 }, ], -- 2.34.1 ------720305064F0765DBFD524815DD79095B--