From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id 321B21FF0A7 for ; Mon, 17 Aug 2026 11:36:35 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id D153523AEF; Mon, 17 Aug 2026 11:36:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=genua.de; s=202307; t=1786958965; bh=eirR+nC3+HJnHxlko1q8qjcMzsVa3MUwQWCClcZNN0Q=; h=Date:From:To:Subject:References:In-Reply-To:From; b=gui2iSAYokwmROpMGGuVJ7FrUZFifun9VhS3wE258BbFt8wmMR8D4CzCRP77TCcQZ utv1KZT7zZCvGldu+C1+rSybeB3jhrKUQ3xVHlp5Voi6PVTkhceDb8oIOuLshhoctQ W2sNLvLjQXug7FOrrfBPVfHzmIZnslgzLEDuSTBnh4vosIadCQvcZJ8cT6RM5dHxin 4K8oNMZY/3wMCMFZV6/tRurWEkl7YZxnPNkNdlk9WqyIiS3Q97PbeGVE/zFcr7jNvF PQWa8FRyNMjmFsmava/H84aErbJ+Gq/Kep3Qybfe/x3UfI+cY94oU/uEDnx9aBXdb2 rNv6a3ELxkqVw== Date: Mon, 17 Aug 2026 11:29:23 +0200 From: Christian Ludwig To: , <-b@genua.de>, 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="----9D02730D1173CA1B1AF2025B4BB97151" X-SPAM-LEVEL: Spam detection results: 0 DKIM_INVALID 0.1 DKIM or DK signature exists, but is not valid DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DMARC_PASS -0.1 DMARC pass policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) 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: ZVGULC2V24IWMVM66QKTKFBX7JLAZKCV X-Message-ID-Hash: ZVGULC2V24IWMVM66QKTKFBX7JLAZKCV 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: ------9D02730D1173CA1B1AF2025B4BB97151 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 ------9D02730D1173CA1B1AF2025B4BB97151--